mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-03-31 22:32:28 -04:00
Merge from trunk
This commit is contained in:
commit
c828bd8e16
@ -19,6 +19,83 @@
|
||||
# new recipes:
|
||||
# - title:
|
||||
|
||||
- version: 0.8.35
|
||||
date: 2011-01-13
|
||||
|
||||
new features:
|
||||
- title: "Metadata plugboards: Allow creation of plugboards for email delivery."
|
||||
tickets: [914012]
|
||||
|
||||
- title: "Tweak EPUB: Also allow tweaking of HTMLZ files (when both EPUB and HTMLZ are present, EPUB is preferred, this can be changed via Preferences->Tweaks)."
|
||||
|
||||
- title: "TXT Input: Support direct conversion of files with extensions .md, .markdown and .textile."
|
||||
tickets: [912931]
|
||||
|
||||
- title: "E-book viewer: Speed up the optional hyphenation algorithm by upgrading the hyphenator library calibre uses"
|
||||
|
||||
- title: "Drivers for PocketBook 611, Motorola Razr Droid and Onyx Boox i62"
|
||||
|
||||
bug fixes:
|
||||
- title: "MOBI Output: When converting a paragraph that contains only a non-breaking space into a line break, ignore paragraphs with height less than 2pt."
|
||||
tickets: [915150]
|
||||
|
||||
- title: "MOBI Input: Handle MOBI files that specify anchor point exactly at pagebreaks. These are apparently produced by John Wiley and Sons."
|
||||
tickets: [914036]
|
||||
|
||||
- title: "Fetch news dialog: The Download now button is no longer scrolled out of view on OS X for news sources that require credentials"
|
||||
|
||||
- title: "Fix commas being removed from author names when generating filenames in the calibre library"
|
||||
|
||||
- title: "ODT Input: Dont crash on empty links"
|
||||
|
||||
- title: "ebook-convert: Allow use of leading ./ when specifying output file names."
|
||||
tickets: [913954]
|
||||
|
||||
- title: "Fix deleting of hierarchical searches broken in Tag Browser"
|
||||
tickets: [912345]
|
||||
|
||||
- title: "Metadata search and replace: Fix rendering error when choosing {template}"
|
||||
tickets: [913154]
|
||||
|
||||
- title: "Fix calibre not starting when stray .po files are present in the working directory"
|
||||
tickets: [913054]
|
||||
|
||||
- title: "Do not error out when getting metadata for authors if the author name has either ::: or :#: in it."
|
||||
tickets: [912713]
|
||||
|
||||
improved recipes:
|
||||
- Pagina 12
|
||||
- USA Today
|
||||
- LWN Weekly
|
||||
- Seattle Times
|
||||
- San Jose Mercury
|
||||
- Grantland.com
|
||||
|
||||
new recipes:
|
||||
- title: Lega Nerd and Pambianco
|
||||
author: faber1971
|
||||
|
||||
- title: Various Turkish news sources
|
||||
author: asalet_r
|
||||
|
||||
- title: Microwave Journal
|
||||
author: Kiavash
|
||||
|
||||
- title: OReilly Premium
|
||||
author: TechnoCat
|
||||
|
||||
- title: Hamilton Spectator and Tillsonburg/Norfolk County
|
||||
author: Eric Coolman
|
||||
|
||||
- title: Opinion Bolivia
|
||||
author: Piet van Oostrum
|
||||
|
||||
- title: ideal.es
|
||||
author: Josemi Liebana
|
||||
|
||||
- title: Novilist Portal
|
||||
author: Darko Miletic
|
||||
|
||||
- version: 0.8.34
|
||||
date: 2012-01-06
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@ class GrantLand(BasicNewsRecipe):
|
||||
title = u"Grantland"
|
||||
description = 'Writings on Sports & Pop Culture'
|
||||
language = 'en'
|
||||
__author__ = 'Barty'
|
||||
__author__ = 'barty on mobileread.com forum'
|
||||
max_articles_per_feed = 100
|
||||
no_stylesheets = False
|
||||
# auto_cleanup is too aggressive sometimes and we end up with blank articles
|
||||
@ -57,33 +57,43 @@ class GrantLand(BasicNewsRecipe):
|
||||
headers = soup.findAll('h2' if tag=='' else 'h3')
|
||||
|
||||
for header in headers:
|
||||
tag = header.find('a')
|
||||
if tag is None or not hasattr(tag,'href'):
|
||||
tag = header.find('a',href=True)
|
||||
if tag is None:
|
||||
continue
|
||||
url = tag['href']
|
||||
if url.startswith('/'):
|
||||
url = self.INDEX + url
|
||||
if url in seen_urls:
|
||||
continue
|
||||
seen_urls.add(url)
|
||||
title = self.tag_to_string(tag)
|
||||
if 'Podcast:' in title or 'In Case You Missed It' in title:
|
||||
continue
|
||||
desc = dt = ''
|
||||
par = header.parent
|
||||
#tag = par.find('cite')
|
||||
#if tag is not None:
|
||||
# desc = '['+self.tag_to_string(tag) + '] '
|
||||
tag = par.find('div')
|
||||
if tag is not None:
|
||||
desc = desc + self.tag_to_string(tag)
|
||||
tag = tag.find('time')
|
||||
if tag is not None:
|
||||
dt = self.tag_to_string( tag)
|
||||
# get at the div that contains description and other info
|
||||
div = header.parent.find('div')
|
||||
if div is not None:
|
||||
desc = self.tag_to_string(div)
|
||||
dt = div.find('time')
|
||||
if dt is not None:
|
||||
dt = self.tag_to_string( dt)
|
||||
|
||||
# if div contains the same url that is in h2/h3
|
||||
# that means this is a series split into multiple articles
|
||||
if div.find('a',href=url):
|
||||
self.log('\tFound series:', title)
|
||||
# grab all articles in series
|
||||
for tag in div.findAll('a',href=True):
|
||||
url = tag['href']
|
||||
if url in seen_urls:
|
||||
continue
|
||||
self.log('\t', url)
|
||||
seen_urls.add(url)
|
||||
articles.append({'title':title+' - '+self.tag_to_string( tag),
|
||||
'url':url,'description':desc,'date':dt})
|
||||
else:
|
||||
self.log('\tFound article:', title)
|
||||
self.log('\t', url)
|
||||
seen_urls.add(url)
|
||||
articles.append({'title':title,'url':url,'description':desc,'date':dt})
|
||||
|
||||
self.log('\tFound article:', title)
|
||||
self.log('\t', url)
|
||||
articles.append({'title':title,'url':url,'description':desc,'date':dt})
|
||||
if len(articles) >= max_articles:
|
||||
break
|
||||
|
||||
|
||||
BIN
recipes/icons/novilist_portal_hr.png
Normal file
BIN
recipes/icons/novilist_portal_hr.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 944 B |
@ -7,7 +7,6 @@ lwn.net
|
||||
'''
|
||||
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
from calibre.ebooks.BeautifulSoup import BeautifulSoup
|
||||
import re
|
||||
|
||||
class WeeklyLWN(BasicNewsRecipe):
|
||||
@ -75,7 +74,6 @@ class WeeklyLWN(BasicNewsRecipe):
|
||||
|
||||
articles = {}
|
||||
ans = []
|
||||
old_section = None
|
||||
url_re = re.compile('^/Articles/')
|
||||
|
||||
while True:
|
||||
@ -105,7 +103,7 @@ class WeeklyLWN(BasicNewsRecipe):
|
||||
if tag_url == None:
|
||||
break
|
||||
body = tag_url
|
||||
if tag_url.string == None:
|
||||
if tag_url.string == None:
|
||||
continue
|
||||
elif tag_url.string == 'Full Story':
|
||||
break
|
||||
@ -116,7 +114,7 @@ class WeeklyLWN(BasicNewsRecipe):
|
||||
|
||||
if tag_url == None:
|
||||
break
|
||||
|
||||
|
||||
|
||||
article = dict(
|
||||
title=self.tag_to_string(tag_title),
|
||||
|
||||
@ -20,7 +20,6 @@ You need to sign up (free) and get username/password.
|
||||
|
||||
import re # Import the regular expressions module.
|
||||
from calibre.ptempfile import TemporaryFile # we need this for saving to a temp file
|
||||
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
class MWJournal(BasicNewsRecipe):
|
||||
@ -93,11 +92,11 @@ class MWJournal(BasicNewsRecipe):
|
||||
# Select the feeds that you are interested.
|
||||
feeds = [
|
||||
(u'Current Issue', u'http://www.mwjournal.com/rss/Rss.asp?type=99'),
|
||||
#(u'Industry News', u'http://mwjournal.com/rss/Rss.asp?type=1'),
|
||||
#(u'Resources', u'http://mwjournal.com/rss/Rss.asp?type=3'),
|
||||
#(u'Buyer\'s Guide', u'http://mwjournal.com/rss/Rss.asp?type=5'),
|
||||
(u'Events', u'http://mwjournal.com/rss/Rss.asp?type=2'),
|
||||
#(u'All Updates', u'http://mwjournal.com/rss/Rss.asp?type=0'),
|
||||
(u'Industry News', u'http://www.mwjournal.com/rss/Rss.asp?type=1'),
|
||||
(u'Resources', u'http://www.mwjournal.com/rss/Rss.asp?type=3'),
|
||||
(u'Buyer\'s Guide', u'http://www.mwjournal.com/rss/Rss.asp?type=5'),
|
||||
(u'Events', u'http://www.mwjournal.com/rss/Rss.asp?type=2'),
|
||||
(u'All Updates', u'http://www.mwjournal.com/rss/Rss.asp?type=0'),
|
||||
]
|
||||
|
||||
# No magazine is complete without cover. Let's get it then!
|
||||
|
||||
49
recipes/novilist_portal_hr.recipe
Normal file
49
recipes/novilist_portal_hr.recipe
Normal file
@ -0,0 +1,49 @@
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2012, Darko Miletic <darko.miletic at gmail.com>'
|
||||
'''
|
||||
www.novilist.hr
|
||||
'''
|
||||
|
||||
import re
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
class NoviList_Portal_hr(BasicNewsRecipe):
|
||||
title = 'Novi List - online portal'
|
||||
__author__ = 'Darko Miletic'
|
||||
description = 'Portal Novog Lista'
|
||||
publisher = 'NOVI LIST d.d.'
|
||||
category = 'Novi list, politika, hrvatski dnevnik, Novine, Hrvatska, Croatia, News, newspaper, Hrvatski,Primorje, dnevni list, Rijeka'
|
||||
oldest_article = 2
|
||||
max_articles_per_feed = 200
|
||||
no_stylesheets = True
|
||||
encoding = 'utf8'
|
||||
use_embedded_content = False
|
||||
language = 'hr'
|
||||
publication_type = 'newsportal'
|
||||
masthead_url = 'http://www.novilist.hr/design/novilist/images/logo-print.gif'
|
||||
extra_css = """
|
||||
body{font-family: Geneva,Arial,Helvetica,Swiss,sans-serif }
|
||||
h1{font-family: Georgia,serif}
|
||||
img{display:block; margin-bottom: 0.4em; margin-top: 0.4em}
|
||||
"""
|
||||
|
||||
preprocess_regexps = [(re.compile(u'\u0110'), lambda match: u'\u00D0')]
|
||||
|
||||
conversion_options = {
|
||||
'comment' : description
|
||||
, 'tags' : category
|
||||
, 'publisher' : publisher
|
||||
, 'language' : language
|
||||
, 'linearize_tables' : True
|
||||
}
|
||||
|
||||
keep_only_tags = [dict(name='div', attrs={'id':'content'})]
|
||||
|
||||
remove_tags = [dict(name=['meta', 'link', 'iframe', 'embed', 'object'])]
|
||||
remove_attributes=['border', 'lang']
|
||||
|
||||
feeds = [(u'Vijesti', u'http://www.novilist.hr/rss/feed/sve.xml')]
|
||||
|
||||
|
||||
def print_version(self, url):
|
||||
return url.replace('http://www.novilist.hr/','http://www.novilist.hr/layout/set/print/')
|
||||
@ -4,9 +4,7 @@ __copyright__ = '2008-2012, Darko Miletic <darko.miletic at gmail.com>'
|
||||
pagina12.com.ar
|
||||
'''
|
||||
|
||||
import re
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
from calibre.ebooks.BeautifulSoup import BeautifulSoup
|
||||
|
||||
class Pagina12(BasicNewsRecipe):
|
||||
title = 'Pagina - 12'
|
||||
|
||||
@ -12,6 +12,7 @@ class MercuryNews(BasicNewsRecipe):
|
||||
title = 'San Jose Mercury News'
|
||||
__author__ = 'Darko Miletic'
|
||||
description = 'News from San Jose'
|
||||
cover_url = 'http://webmedia.newseum.org/newseum-multimedia/dfp/jpg12/lg/CA_SJMN.jpg'
|
||||
publisher = 'San Jose Mercury News'
|
||||
category = 'news, politics, USA, San Jose, California'
|
||||
oldest_article = 2
|
||||
|
||||
@ -12,6 +12,7 @@ class SeattleTimes(BasicNewsRecipe):
|
||||
title = 'The Seattle Times'
|
||||
__author__ = 'Darko Miletic'
|
||||
description = 'News from Seattle and USA'
|
||||
cover_url = 'http://webmedia.newseum.org/newseum-multimedia/dfp/jpg12/lg/WA_ST.jpg'
|
||||
publisher = 'The Seattle Times'
|
||||
category = 'news, politics, USA'
|
||||
oldest_article = 2
|
||||
|
||||
@ -13,6 +13,7 @@ class USAToday(BasicNewsRecipe):
|
||||
title = 'USA Today'
|
||||
__author__ = 'Kovid Goyal'
|
||||
description = 'newspaper'
|
||||
cover_url = 'http://webmedia.newseum.org/newseum-multimedia/dfp/jpg12/lg/USAT.jpg'
|
||||
encoding = 'utf-8'
|
||||
publisher = 'usatoday.com'
|
||||
category = 'news, usa'
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/** @license Hyphenator X.Y.Z - client side hyphenation for webbrowsers
|
||||
* Copyright (C) 2010 Mathias Nater, Zürich (mathias at mnn dot ch)
|
||||
/** @license Hyphenator 4.0.0 - client side hyphenation for webbrowsers
|
||||
* Copyright (C) 2011 Mathias Nater, Zürich (mathias at mnn dot ch)
|
||||
* Project and Source hosted on http://code.google.com/p/hyphenator/
|
||||
*
|
||||
* This JavaScript code is free software: you can redistribute
|
||||
@ -15,6 +15,40 @@
|
||||
* that code without the copy of the GNU GPL normally required by
|
||||
* section 4, provided you include this license notice and a URL
|
||||
* through which recipients can access the Corresponding Source.
|
||||
*
|
||||
*
|
||||
* Hyphenator.js contains code from Bram Steins hypher.js-Project:
|
||||
* https://github.com/bramstein/Hypher
|
||||
*
|
||||
* Code from this project is marked in the source and belongs
|
||||
* to the following license:
|
||||
*
|
||||
* Copyright (c) 2011, Bram Stein
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. The name of the author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||
* EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
||||
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
||||
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
||||
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -56,6 +90,7 @@ var Hyphenator = (function (window) {
|
||||
*/
|
||||
supportedLang = {
|
||||
'be': 'be.js',
|
||||
'ca': 'ca.js',
|
||||
'cs': 'cs.js',
|
||||
'da': 'da.js',
|
||||
'bn': 'bn.js',
|
||||
@ -80,14 +115,16 @@ var Hyphenator = (function (window) {
|
||||
'lt': 'lt.js',
|
||||
'lv': 'lv.js',
|
||||
'ml': 'ml.js',
|
||||
'no': 'no-nb.js',
|
||||
'no-nb': 'no-nb.js',
|
||||
'nb': 'nb-no.js',
|
||||
'no': 'nb-no.js',
|
||||
'nb-no': 'nb-no.js',
|
||||
'nl': 'nl.js',
|
||||
'or': 'or.js',
|
||||
'pa': 'pa.js',
|
||||
'pl': 'pl.js',
|
||||
'pt': 'pt.js',
|
||||
'ru': 'ru.js',
|
||||
'sk': 'sk.js',
|
||||
'sl': 'sl.js',
|
||||
'sv': 'sv.js',
|
||||
'ta': 'ta.js',
|
||||
@ -235,7 +272,7 @@ var Hyphenator = (function (window) {
|
||||
* @private
|
||||
* @see Hyphenator-hyphenateElement
|
||||
*/
|
||||
dontHyphenate = {'script': true, 'code': true, 'pre': true, 'img': true, 'br': true, 'samp': true, 'kbd': true, 'var': true, 'abbr': true, 'acronym': true, 'sub': true, 'sup': true, 'button': true, 'option': true, 'label': true, 'textarea': true, 'input': true},
|
||||
dontHyphenate = {'script': true, 'code': true, 'pre': true, 'img': true, 'br': true, 'samp': true, 'kbd': true, 'var': true, 'abbr': true, 'acronym': true, 'sub': true, 'sup': true, 'button': true, 'option': true, 'label': true, 'textarea': true, 'input': true, 'math': true, 'svg': true},
|
||||
|
||||
/**
|
||||
* @name Hyphenator-enableCache
|
||||
@ -308,6 +345,86 @@ var Hyphenator = (function (window) {
|
||||
* @see Hyphenator-toggleBox
|
||||
*/
|
||||
displayToggleBox = false,
|
||||
|
||||
/**
|
||||
* @name Hyphenator-css3
|
||||
* @description
|
||||
* A variable to set if css3 hyphenation should be used
|
||||
* @type boolean
|
||||
* @default false
|
||||
* @private
|
||||
* @see Hyphenator.config
|
||||
*/
|
||||
css3 = false,
|
||||
/**
|
||||
* @name Hyphenator-css3_hsupport
|
||||
* @description
|
||||
* A generated object containing information for CSS3-hyphenation support
|
||||
* {
|
||||
* support: boolean,
|
||||
* property: <the property name to access hyphen-settings>,
|
||||
* languages: <an object containing supported languages>
|
||||
* }
|
||||
* @type object
|
||||
* @default undefined
|
||||
* @private
|
||||
* @see Hyphenator-css3_gethsupport
|
||||
*/
|
||||
css3_h9n,
|
||||
/**
|
||||
* @name Hyphenator-css3_gethsupport
|
||||
* @description
|
||||
* This function sets Hyphenator-css3_h9n for the current UA
|
||||
* @type function
|
||||
* @private
|
||||
* @see Hyphenator-css3_h9n
|
||||
*/
|
||||
css3_gethsupport = function () {
|
||||
var s,
|
||||
ua = navigator.userAgent,
|
||||
r = {
|
||||
support: false,
|
||||
property: '',
|
||||
languages: {}
|
||||
};
|
||||
if (window.getComputedStyle) {
|
||||
s = window.getComputedStyle(window.document.getElementsByTagName('body')[0]);
|
||||
} else {
|
||||
//ancient Browser don't support CSS3 anyway
|
||||
css3_h9n = r;
|
||||
return;
|
||||
}
|
||||
if (ua.indexOf('Chrome') !== -1) {
|
||||
//Chrome actually knows -webkit-hyphens but does no hyphenation
|
||||
r.support = false;
|
||||
} else if ((ua.indexOf('Safari') !== -1) && (s['-webkit-hyphens'] !== undefined)) {
|
||||
r.support = true;
|
||||
r.property = '-webkit-hyphens';
|
||||
if (ua.indexOf('Mobile') !== -1) {
|
||||
//iOS only hyphenates in systemlanguage
|
||||
r.languages[navigator.language.split('-')[0]] = true;
|
||||
} else {
|
||||
//Desktop Safari only hyphenates some languages:
|
||||
r.languages = {
|
||||
de: true,
|
||||
en: true,
|
||||
es: true,
|
||||
fr: true,
|
||||
it: true,
|
||||
nl: true,
|
||||
ru: true,
|
||||
zh: true
|
||||
};
|
||||
}
|
||||
} else if ((ua.indexOf('Firefox') !== -1) && (s['MozHyphens'] !== undefined)) {
|
||||
r.support = true;
|
||||
r.property = 'MozHyphens';
|
||||
r.languages = {
|
||||
en: true
|
||||
};
|
||||
}
|
||||
css3_h9n = r;
|
||||
},
|
||||
|
||||
/**
|
||||
* @name Hyphenator-hyphenateClass
|
||||
@ -404,6 +521,7 @@ var Hyphenator = (function (window) {
|
||||
* @see Hyphenator-autoSetMainLanguage
|
||||
*/
|
||||
defaultLanguage = '',
|
||||
|
||||
|
||||
/**
|
||||
* @name Hyphenator-elements
|
||||
@ -413,7 +531,38 @@ var Hyphenator = (function (window) {
|
||||
* @type {Array}
|
||||
* @private
|
||||
*/
|
||||
elements = [],
|
||||
elements = (function () {
|
||||
var Element = function (element, data) {
|
||||
this.element = element;
|
||||
this.hyphenated = false;
|
||||
this.treated = false; //collected but not hyphenated (dohyphenation is off)
|
||||
this.data = data;
|
||||
},
|
||||
ElementCollection = function () {
|
||||
this.count = 0;
|
||||
this.hyCount = 0;
|
||||
this.list = {};
|
||||
};
|
||||
ElementCollection.prototype = {
|
||||
add: function (el, lang, data) {
|
||||
if (!this.list.hasOwnProperty(lang)) {
|
||||
this.list[lang] = [];
|
||||
}
|
||||
this.list[lang].push(new Element(el, data));
|
||||
this.count += 1;
|
||||
},
|
||||
each: function (fn) {
|
||||
var k;
|
||||
for (k in this.list) {
|
||||
if (this.list.hasOwnProperty(k)) {
|
||||
fn(k, this.list[k]);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
return new ElementCollection();
|
||||
}()),
|
||||
|
||||
|
||||
/**
|
||||
* @name Hyphenator-exceptions
|
||||
@ -426,15 +575,6 @@ var Hyphenator = (function (window) {
|
||||
*/
|
||||
exceptions = {},
|
||||
|
||||
countObjProps = function (obj) {
|
||||
var k, l = 0;
|
||||
for (k in obj) {
|
||||
if (obj.hasOwnProperty(k)) {
|
||||
l++;
|
||||
}
|
||||
}
|
||||
return l;
|
||||
},
|
||||
/**
|
||||
* @name Hyphenator-docLanguages
|
||||
* @description
|
||||
@ -445,7 +585,6 @@ var Hyphenator = (function (window) {
|
||||
*/
|
||||
docLanguages = {},
|
||||
|
||||
|
||||
/**
|
||||
* @name Hyphenator-state
|
||||
* @description
|
||||
@ -583,6 +722,18 @@ var Hyphenator = (function (window) {
|
||||
*/
|
||||
intermediateState = 'hidden',
|
||||
|
||||
/**
|
||||
* @name Hyphenator-unhide
|
||||
* @description
|
||||
* How hidden elements unhide: either simultaneous (default: 'wait') or progressively.
|
||||
* 'wait' makes Hyphenator.js to wait until all elements are hyphenated (one redraw)
|
||||
* With 'progressiv' Hyphenator.js unhides elements as soon as they are hyphenated.
|
||||
* @see Hyphenator.config
|
||||
* @type {string}
|
||||
* @private
|
||||
*/
|
||||
unhide = 'wait',
|
||||
|
||||
/**
|
||||
* @name Hyphenator-hyphen
|
||||
* @description
|
||||
@ -619,50 +770,6 @@ var Hyphenator = (function (window) {
|
||||
*/
|
||||
safeCopy = true,
|
||||
|
||||
/**
|
||||
* @name Hyphenator-Expando
|
||||
* @description
|
||||
* This custom object stores data for elements: storing data directly in elements
|
||||
* (DomElement.customData = foobar;) isn't a good idea. It would lead to conflicts
|
||||
* in form elements, when the form has a child with name="foobar". Therefore, this
|
||||
* solution follows the approach of jQuery: the data is stored in an object and
|
||||
* referenced by a unique attribute of the element. The attribute has a name that
|
||||
* is built by the prefix "HyphenatorExpando_" and a random number, so if the very
|
||||
* very rare case occurs, that there's already an attribute with the same name, a
|
||||
* simple reload is enough to make it function.
|
||||
* @private
|
||||
*/
|
||||
Expando = (function () {
|
||||
var container = {},
|
||||
name = "HyphenatorExpando_" + Math.random(),
|
||||
uuid = 0;
|
||||
return {
|
||||
getDataForElem : function (elem) {
|
||||
return container[elem[name].id];
|
||||
},
|
||||
setDataForElem : function (elem, data) {
|
||||
var id;
|
||||
if (elem[name] && elem[name].id !== '') {
|
||||
id = elem[name].id;
|
||||
} else {
|
||||
id = uuid++;
|
||||
elem[name] = {'id': id}; //object needed, otherways it is reflected in HTML in IE
|
||||
}
|
||||
container[id] = data;
|
||||
},
|
||||
appendDataForElem : function (elem, data) {
|
||||
var k;
|
||||
for (k in data) {
|
||||
if (data.hasOwnProperty(k)) {
|
||||
container[elem[name].id][k] = data[k];
|
||||
}
|
||||
}
|
||||
},
|
||||
delDataOfElem : function (elem) {
|
||||
delete container[elem[name]];
|
||||
}
|
||||
};
|
||||
}()),
|
||||
|
||||
/*
|
||||
* runOnContentLoaded is based od jQuery.bindReady()
|
||||
@ -915,36 +1022,41 @@ var Hyphenator = (function (window) {
|
||||
var elToProcess, tmp, i = 0,
|
||||
process = function (el, hide, lang) {
|
||||
var n, i = 0, hyphenatorSettings = {};
|
||||
if (hide && intermediateState === 'hidden') {
|
||||
if (!!el.getAttribute('style')) {
|
||||
hyphenatorSettings.hasOwnStyle = true;
|
||||
} else {
|
||||
hyphenatorSettings.hasOwnStyle = false;
|
||||
}
|
||||
hyphenatorSettings.isHidden = true;
|
||||
el.style.visibility = 'hidden';
|
||||
}
|
||||
|
||||
if (el.lang && typeof(el.lang) === 'string') {
|
||||
hyphenatorSettings.language = el.lang.toLowerCase(); //copy attribute-lang to internal lang
|
||||
lang = el.lang.toLowerCase(); //copy attribute-lang to internal lang
|
||||
} else if (lang) {
|
||||
hyphenatorSettings.language = lang.toLowerCase();
|
||||
lang = lang.toLowerCase();
|
||||
} else {
|
||||
hyphenatorSettings.language = getLang(el, true);
|
||||
lang = getLang(el, true);
|
||||
}
|
||||
lang = hyphenatorSettings.language;
|
||||
if (supportedLang[lang]) {
|
||||
docLanguages[lang] = true;
|
||||
} else {
|
||||
if (supportedLang.hasOwnProperty(lang.split('-')[0])) { //try subtag
|
||||
lang = lang.split('-')[0];
|
||||
hyphenatorSettings.language = lang;
|
||||
} else if (!isBookmarklet) {
|
||||
onError(new Error('Language ' + lang + ' is not yet supported.'));
|
||||
}
|
||||
}
|
||||
Expando.setDataForElem(el, hyphenatorSettings);
|
||||
|
||||
elements.push(el);
|
||||
//if css3-hyphenation is supported: use it!
|
||||
if (css3 && css3_h9n.support && !!css3_h9n.languages[lang]) {
|
||||
el.style[css3_h9n.property] = "auto";
|
||||
el.style['-webkit-locale'] = "'" + lang + "'";
|
||||
} else {
|
||||
if (intermediateState === 'hidden') {
|
||||
if (!!el.getAttribute('style')) {
|
||||
hyphenatorSettings.hasOwnStyle = true;
|
||||
} else {
|
||||
hyphenatorSettings.hasOwnStyle = false;
|
||||
}
|
||||
hyphenatorSettings.isHidden = true;
|
||||
el.style.visibility = 'hidden';
|
||||
}
|
||||
if (supportedLang[lang]) {
|
||||
docLanguages[lang] = true;
|
||||
} else {
|
||||
if (supportedLang.hasOwnProperty(lang.split('-')[0])) { //try subtag
|
||||
lang = lang.split('-')[0];
|
||||
hyphenatorSettings.language = lang;
|
||||
} else if (!isBookmarklet) {
|
||||
onError(new Error('Language ' + lang + ' is not yet supported.'));
|
||||
}
|
||||
}
|
||||
elements.add(el, lang, hyphenatorSettings);
|
||||
}
|
||||
while (!!(n = el.childNodes[i++])) {
|
||||
if (n.nodeType === 1 && !dontHyphenate[n.nodeName.toLowerCase()] &&
|
||||
n.className.indexOf(dontHyphenateClass) === -1 && !(n in elToProcess)) {
|
||||
@ -952,6 +1064,9 @@ var Hyphenator = (function (window) {
|
||||
}
|
||||
}
|
||||
};
|
||||
if (css3) {
|
||||
css3_gethsupport();
|
||||
}
|
||||
if (isBookmarklet) {
|
||||
elToProcess = contextWindow.document.getElementsByTagName('body')[0];
|
||||
process(elToProcess, false, mainLanguage);
|
||||
@ -962,44 +1077,109 @@ var Hyphenator = (function (window) {
|
||||
process(tmp, true, '');
|
||||
}
|
||||
}
|
||||
if (!Hyphenator.languages.hasOwnProperty(mainLanguage)) {
|
||||
docLanguages[mainLanguage] = true;
|
||||
} else if (!Hyphenator.languages[mainLanguage].prepared) {
|
||||
docLanguages[mainLanguage] = true;
|
||||
}
|
||||
if (elements.length > 0) {
|
||||
Expando.appendDataForElem(elements[elements.length - 1], {isLast : true});
|
||||
if (elements.count === 0) {
|
||||
//nothing to hyphenate or all hyphenated b css3
|
||||
state = 3;
|
||||
onHyphenationDone();
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* @name Hyphenator-convertPatterns
|
||||
* @name Hyphenator-createTrie
|
||||
* @description
|
||||
* Converts the patterns from string '_a6' to object '_a':'_a6'.
|
||||
* The result is stored in the {@link Hyphenator-patterns}-object.
|
||||
* converts patterns of the given language in a trie
|
||||
* @private
|
||||
* @param {string} lang the language whose patterns shall be converted
|
||||
*/
|
||||
convertPatterns = function (lang) {
|
||||
var plen, anfang, ende, pats, pat, key, tmp = {};
|
||||
pats = Hyphenator.languages[lang].patterns;
|
||||
for (plen in pats) {
|
||||
if (pats.hasOwnProperty(plen)) {
|
||||
plen = parseInt(plen, 10);
|
||||
anfang = 0;
|
||||
ende = plen;
|
||||
while (!!(pat = pats[plen].substring(anfang, ende))) {
|
||||
key = pat.replace(/\d/g, '');
|
||||
tmp[key] = pat;
|
||||
anfang = ende;
|
||||
ende += plen;
|
||||
/** @license BSD licenced code
|
||||
* The following code is based on code from hypher.js and adapted for Hyphenator.js
|
||||
* Copyright (c) 2011, Bram Stein
|
||||
*/
|
||||
var size = 0,
|
||||
tree = {
|
||||
tpoints: []
|
||||
},
|
||||
patterns, pattern, i, j, k,
|
||||
patternObject = Hyphenator.languages[lang].patterns,
|
||||
c, chars, points, t, p, codePoint,
|
||||
getPoints = (function () {
|
||||
//IE<9 doesn't act like other browsers
|
||||
if ('in3se'.split(/\D/).length === 1) {
|
||||
return function (pattern) {
|
||||
var chars = pattern.split(''), c, i, r = [],
|
||||
numb3rs = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9}, lastWasNum = false;
|
||||
i = 0;
|
||||
while (!!(c = chars[i])) {
|
||||
if (numb3rs.hasOwnProperty(c)) {
|
||||
r.push(c);
|
||||
i += 2;
|
||||
lastWasNum = true;
|
||||
} else {
|
||||
r.push('');
|
||||
i += 1;
|
||||
lastWasNum = false;
|
||||
}
|
||||
}
|
||||
if (!lastWasNum) {
|
||||
r.push('');
|
||||
}
|
||||
return r;
|
||||
};
|
||||
} else {
|
||||
return function (pattern) {
|
||||
return pattern.split(/\D/);
|
||||
};
|
||||
}
|
||||
}());
|
||||
|
||||
for (size in patternObject) {
|
||||
if (patternObject.hasOwnProperty(size)) {
|
||||
patterns = patternObject[size].match(new RegExp('.{1,' + (+size) + '}', 'g'));
|
||||
i = 0;
|
||||
while (!!(pattern = patterns[i++])) {
|
||||
chars = pattern.replace(/[\d]/g, '').split('');
|
||||
points = getPoints(pattern);
|
||||
t = tree;
|
||||
|
||||
j = 0;
|
||||
while (!!(c = chars[j++])) {
|
||||
codePoint = c.charCodeAt(0);
|
||||
|
||||
if (!t[codePoint]) {
|
||||
t[codePoint] = {};
|
||||
}
|
||||
t = t[codePoint];
|
||||
}
|
||||
|
||||
t.tpoints = [];
|
||||
for (k = 0; k < points.length; k++) {
|
||||
p = points[k];
|
||||
t.tpoints.push((p == "") ? 0 : p);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Hyphenator.languages[lang].patterns = tmp;
|
||||
Hyphenator.languages[lang].patternsConverted = true;
|
||||
Hyphenator.languages[lang].patterns = tree;
|
||||
/**
|
||||
* end of BSD licenced code from hypher.js
|
||||
*/
|
||||
},
|
||||
|
||||
recreatePattern = function (pattern, nodePoints) {
|
||||
var r = [], c = pattern.split(''), i;
|
||||
for (i = 0; i < nodePoints.length; i++) {
|
||||
if (nodePoints[i] !== 0) {
|
||||
r.push(nodePoints[i]);
|
||||
}
|
||||
if (c[i]) {
|
||||
r.push(c[i]);
|
||||
}
|
||||
}
|
||||
return r.join('');
|
||||
},
|
||||
|
||||
/**
|
||||
* @name Hyphenator-convertExceptionsToObject
|
||||
* @description
|
||||
@ -1112,7 +1292,7 @@ var Hyphenator = (function (window) {
|
||||
lo.exceptions = {};
|
||||
}
|
||||
convertPatterns(lang);
|
||||
wrd = '[\\w' + lo.specialChars + '@' + String.fromCharCode(173) + '-]{' + min + ',}';
|
||||
wrd = '[\\w' + lo.specialChars + '@' + String.fromCharCode(173) + String.fromCharCode(8204) + '-]{' + min + ',}';
|
||||
lo.genRegExp = new RegExp('(' + url + ')|(' + mail + ')|(' + wrd + ')', 'gi');
|
||||
lo.prepared = true;
|
||||
}
|
||||
@ -1136,7 +1316,6 @@ var Hyphenator = (function (window) {
|
||||
* by repeatedly checking Hyphenator.languages. If a patterfile is loaded the patterns are
|
||||
* converted to their object style and the lang-object extended.
|
||||
* Finally the callback is called.
|
||||
* @param {function()} callback to call, when all patterns are loaded
|
||||
* @private
|
||||
*/
|
||||
prepare = function (callback) {
|
||||
@ -1148,7 +1327,7 @@ var Hyphenator = (function (window) {
|
||||
}
|
||||
}
|
||||
state = 2;
|
||||
callback();
|
||||
callback('*');
|
||||
return;
|
||||
}
|
||||
// get all languages that are used and preload the patterns
|
||||
@ -1176,23 +1355,18 @@ var Hyphenator = (function (window) {
|
||||
delete exceptions[lang];
|
||||
}
|
||||
//Replace genRegExp since it may have been changed:
|
||||
tmp1 = '[\\w' + Hyphenator.languages[lang].specialChars + '@' + String.fromCharCode(173) + '-]{' + min + ',}';
|
||||
tmp1 = '[\\w' + Hyphenator.languages[lang].specialChars + '@' + String.fromCharCode(173) + String.fromCharCode(8204) + '-]{' + min + ',}';
|
||||
Hyphenator.languages[lang].genRegExp = new RegExp('(' + url + ')|(' + mail + ')|(' + tmp1 + ')', 'gi');
|
||||
|
||||
delete docLanguages[lang];
|
||||
callback(lang);
|
||||
continue;
|
||||
} else {
|
||||
loadPatterns(lang);
|
||||
}
|
||||
}
|
||||
}
|
||||
// if all patterns are loaded from storage: callback
|
||||
if (countObjProps(docLanguages) === 0) {
|
||||
state = 2;
|
||||
callback();
|
||||
return;
|
||||
}
|
||||
// else async wait until patterns are loaded, then callback
|
||||
// else async wait until patterns are loaded, then hyphenate
|
||||
interval = window.setInterval(function () {
|
||||
var finishedLoading = true, lang;
|
||||
for (lang in docLanguages) {
|
||||
@ -1202,6 +1376,7 @@ var Hyphenator = (function (window) {
|
||||
delete docLanguages[lang];
|
||||
//do conversion while other patterns are loading:
|
||||
prepareLanguagesObj(lang);
|
||||
callback(lang);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1209,7 +1384,6 @@ var Hyphenator = (function (window) {
|
||||
//console.log('callig callback for ' + contextWindow.location.href);
|
||||
window.clearInterval(interval);
|
||||
state = 2;
|
||||
callback();
|
||||
}
|
||||
}, 100);
|
||||
},
|
||||
@ -1218,7 +1392,6 @@ var Hyphenator = (function (window) {
|
||||
* @name Hyphenator-switchToggleBox
|
||||
* @description
|
||||
* Creates or hides the toggleBox: a small button to turn off/on hyphenation on a page.
|
||||
* @param {boolean} s true when hyphenation is on, false when it's off
|
||||
* @see Hyphenator.config
|
||||
* @private
|
||||
*/
|
||||
@ -1255,6 +1428,7 @@ var Hyphenator = (function (window) {
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* @name Hyphenator-hyphenateWord
|
||||
* @description
|
||||
@ -1269,8 +1443,10 @@ var Hyphenator = (function (window) {
|
||||
* @public
|
||||
*/
|
||||
hyphenateWord = function (lang, word) {
|
||||
var lo = Hyphenator.languages[lang],
|
||||
parts, i, l, w, wl, s, hypos, p, maxwins, win, pat = false, patk, c, t, n, numb3rs, inserted, hyphenatedword, val;
|
||||
var lo = Hyphenator.languages[lang], parts, l, subst,
|
||||
w, characters, originalCharacters, wordLength, i, j, k, node, points = [],
|
||||
characterPoints = [], nodePoints, nodePointsLength, m = Math.max, trie,
|
||||
result = [''], pattern;
|
||||
if (word === '') {
|
||||
return '';
|
||||
}
|
||||
@ -1292,62 +1468,66 @@ var Hyphenator = (function (window) {
|
||||
}
|
||||
return parts.join('-');
|
||||
}
|
||||
//finally the core hyphenation algorithm
|
||||
w = '_' + word + '_';
|
||||
wl = w.length;
|
||||
s = w.split('');
|
||||
if (word.indexOf("'") !== -1) {
|
||||
w = w.toLowerCase().replace("'", "’"); //replace APOSTROPHE with RIGHT SINGLE QUOTATION MARK (since the latter is used in the patterns)
|
||||
} else {
|
||||
w = w.toLowerCase();
|
||||
w = word = '_' + word + '_';
|
||||
if (!!lo.charSubstitution) {
|
||||
for (subst in lo.charSubstitution) {
|
||||
if (lo.charSubstitution.hasOwnProperty(subst)) {
|
||||
w = w.replace(new RegExp(subst, 'g'), lo.charSubstitution[subst]);
|
||||
}
|
||||
}
|
||||
}
|
||||
hypos = [];
|
||||
numb3rs = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9}; //check for member is faster then isFinite()
|
||||
n = wl - lo.shortestPattern;
|
||||
for (p = 0; p <= n; p++) {
|
||||
maxwins = Math.min((wl - p), lo.longestPattern);
|
||||
for (win = lo.shortestPattern; win <= maxwins; win++) {
|
||||
if (lo.patterns.hasOwnProperty(patk = w.substring(p, p + win))) {
|
||||
pat = lo.patterns[patk];
|
||||
if (enableReducedPatternSet && (typeof pat === 'string')) {
|
||||
lo.redPatSet[patk] = pat;
|
||||
if (word.indexOf("'") !== -1) {
|
||||
w = w.replace("'", "’"); //replace APOSTROPHE with RIGHT SINGLE QUOTATION MARK (since the latter is used in the patterns)
|
||||
}
|
||||
/** @license BSD licenced code
|
||||
* The following code is based on code from hypher.js
|
||||
* Copyright (c) 2011, Bram Stein
|
||||
*/
|
||||
characters = w.toLowerCase().split('');
|
||||
originalCharacters = word.split('');
|
||||
wordLength = characters.length;
|
||||
trie = lo.patterns;
|
||||
for (i = 0; i < wordLength; i += 1) {
|
||||
points[i] = 0;
|
||||
characterPoints[i] = characters[i].charCodeAt(0);
|
||||
}
|
||||
for (i = 0; i < wordLength; i += 1) {
|
||||
pattern = '';
|
||||
node = trie;
|
||||
for (j = i; j < wordLength; j += 1) {
|
||||
node = node[characterPoints[j]];
|
||||
if (node) {
|
||||
if (enableReducedPatternSet) {
|
||||
pattern += String.fromCharCode(characterPoints[j]);
|
||||
}
|
||||
if (typeof pat === 'string') {
|
||||
//convert from string 'a5b' to array [1,5] (pos,value)
|
||||
t = 0;
|
||||
val = [];
|
||||
for (i = 0; i < pat.length; i++) {
|
||||
if (!!(c = numb3rs[pat.charAt(i)])) {
|
||||
val.push(i - t, c);
|
||||
t++;
|
||||
nodePoints = node.tpoints;
|
||||
if (nodePoints) {
|
||||
if (enableReducedPatternSet) {
|
||||
if (!lo.redPatSet) {
|
||||
lo.redPatSet = {};
|
||||
}
|
||||
lo.redPatSet[pattern] = recreatePattern(pattern, nodePoints);
|
||||
}
|
||||
for (k = 0, nodePointsLength = nodePoints.length; k < nodePointsLength; k += 1) {
|
||||
points[i + k] = m(points[i + k], nodePoints[k]);
|
||||
}
|
||||
pat = lo.patterns[patk] = val;
|
||||
}
|
||||
} else {
|
||||
continue;
|
||||
}
|
||||
for (i = 0; i < pat.length; i++) {
|
||||
c = p - 1 + pat[i];
|
||||
if (!hypos[c] || hypos[c] < pat[i + 1]) {
|
||||
hypos[c] = pat[i + 1];
|
||||
}
|
||||
i++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
inserted = 0;
|
||||
for (i = lo.leftmin; i <= (word.length - lo.rightmin); i++) {
|
||||
if (!!(hypos[i] & 1)) {
|
||||
s.splice(i + inserted + 1, 0, hyphen);
|
||||
inserted++;
|
||||
for (i = 1; i < wordLength - 1; i += 1) {
|
||||
if (i > lo.leftmin && i < (wordLength - lo.rightmin) && points[i] % 2) {
|
||||
result.push(originalCharacters[i]);
|
||||
} else {
|
||||
result[result.length - 1] += originalCharacters[i];
|
||||
}
|
||||
}
|
||||
hyphenatedword = s.slice(1, -1).join('');
|
||||
if (enableCache) {
|
||||
lo.cache[word] = hyphenatedword;
|
||||
}
|
||||
return hyphenatedword;
|
||||
return result.join(hyphen);
|
||||
/**
|
||||
* end of BSD licenced code from hypher.js
|
||||
*/
|
||||
},
|
||||
|
||||
/**
|
||||
@ -1425,13 +1605,18 @@ var Hyphenator = (function (window) {
|
||||
}
|
||||
//create a hidden shadow element
|
||||
shadow = currDoc.createElement('div');
|
||||
shadow.style.overflow = 'hidden';
|
||||
shadow.style.position = 'absolute';
|
||||
shadow.style.top = '-5000px';
|
||||
shadow.style.height = '1px';
|
||||
//Moving the element out of the screen doesn't work for IE9 (https://connect.microsoft.com/IE/feedback/details/663981/)
|
||||
//shadow.style.overflow = 'hidden';
|
||||
//shadow.style.position = 'absolute';
|
||||
//shadow.style.top = '-5000px';
|
||||
//shadow.style.height = '1px';
|
||||
//doing this instead:
|
||||
shadow.style.color = window.getComputedStyle ? targetWindow.getComputedStyle(body).backgroundColor : '#FFFFFF';
|
||||
shadow.style.fontSize = '0px';
|
||||
body.appendChild(shadow);
|
||||
if (!!window.getSelection) {
|
||||
//FF3, Webkit
|
||||
//FF3, Webkit, IE9
|
||||
e.stopPropagation();
|
||||
selection = targetWindow.getSelection();
|
||||
range = selection.getRangeAt(0);
|
||||
shadow.appendChild(range.cloneContents());
|
||||
@ -1439,10 +1624,12 @@ var Hyphenator = (function (window) {
|
||||
selection.selectAllChildren(shadow);
|
||||
restore = function () {
|
||||
shadow.parentNode.removeChild(shadow);
|
||||
selection.removeAllRanges(); //IE9 needs that
|
||||
selection.addRange(range);
|
||||
};
|
||||
} else {
|
||||
// IE
|
||||
// IE<9
|
||||
e.cancelBubble = true;
|
||||
selection = targetWindow.document.selection;
|
||||
range = selection.createRange();
|
||||
shadow.innerHTML = range.htmlText;
|
||||
@ -1464,12 +1651,59 @@ var Hyphenator = (function (window) {
|
||||
}
|
||||
el = el || body;
|
||||
if (window.addEventListener) {
|
||||
el.addEventListener("copy", oncopyHandler, false);
|
||||
el.addEventListener("copy", oncopyHandler, true);
|
||||
} else {
|
||||
el.attachEvent("oncopy", oncopyHandler);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* @name Hyphenator-unhideElement
|
||||
* @description
|
||||
* Unhides an element and removes the visibility attr if set by hyphenator
|
||||
* @param Object The Element object from ElementCollection
|
||||
* @private
|
||||
*/
|
||||
unhideElement = function (elo) {
|
||||
var el = elo.element,
|
||||
hyphenatorSettings = elo.data;
|
||||
el.style.visibility = 'visible';
|
||||
elo.data.isHidden = false;
|
||||
if (!hyphenatorSettings.hasOwnStyle) {
|
||||
el.setAttribute('style', ''); // without this, removeAttribute doesn't work in Safari (thanks to molily)
|
||||
el.removeAttribute('style');
|
||||
} else {
|
||||
if (el.style.removeProperty) {
|
||||
el.style.removeProperty('visibility');
|
||||
} else if (el.style.removeAttribute) { // IE
|
||||
el.style.removeAttribute('visibility');
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* @name Hyphenator-checkIfAllDone
|
||||
* @description
|
||||
* Checks if all Elements are hyphenated, unhides them and fires onHyphenationDone()
|
||||
* @private
|
||||
*/
|
||||
checkIfAllDone = function () {
|
||||
var allDone = true;
|
||||
elements.each(function (lang, list) {
|
||||
var i, l = list.length;
|
||||
for (i = 0; i < l; i++) {
|
||||
allDone = allDone && list[i].hyphenated;
|
||||
if (intermediateState === 'hidden' && unhide === 'wait') {
|
||||
unhideElement(list[i]);
|
||||
}
|
||||
}
|
||||
});
|
||||
if (allDone) {
|
||||
state = 3;
|
||||
onHyphenationDone();
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* @name Hyphenator-hyphenateElement
|
||||
@ -1480,9 +1714,10 @@ var Hyphenator = (function (window) {
|
||||
* @param {Object} el The element to hyphenate
|
||||
* @private
|
||||
*/
|
||||
hyphenateElement = function (el) {
|
||||
var hyphenatorSettings = Expando.getDataForElem(el),
|
||||
lang = hyphenatorSettings.language, hyphenate, n, i,
|
||||
hyphenateElement = function (lang, elo) {
|
||||
var hyphenatorSettings = elo.data,
|
||||
el = elo.element,
|
||||
hyphenate, n, i,
|
||||
controlOrphans = function (part) {
|
||||
var h, r;
|
||||
switch (hyphen) {
|
||||
@ -1534,52 +1769,51 @@ var Hyphenator = (function (window) {
|
||||
}
|
||||
}
|
||||
}
|
||||
if (hyphenatorSettings.isHidden && intermediateState === 'hidden') {
|
||||
el.style.visibility = 'visible';
|
||||
if (!hyphenatorSettings.hasOwnStyle) {
|
||||
el.setAttribute('style', ''); // without this, removeAttribute doesn't work in Safari (thanks to molily)
|
||||
el.removeAttribute('style');
|
||||
} else {
|
||||
if (el.style.removeProperty) {
|
||||
el.style.removeProperty('visibility');
|
||||
} else if (el.style.removeAttribute) { // IE
|
||||
el.style.removeAttribute('visibility');
|
||||
}
|
||||
}
|
||||
if (hyphenatorSettings.isHidden && intermediateState === 'hidden' && unhide === 'progressive') {
|
||||
unhideElement(elo);
|
||||
}
|
||||
if (hyphenatorSettings.isLast) {
|
||||
state = 3;
|
||||
documentCount--;
|
||||
if (documentCount > (-1000) && documentCount <= 0) {
|
||||
documentCount = (-2000);
|
||||
onHyphenationDone();
|
||||
}
|
||||
elo.hyphenated = true;
|
||||
elements.hyCount += 1;
|
||||
if (elements.count <= elements.hyCount) {
|
||||
checkIfAllDone();
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* @name Hyphenator-hyphenateDocument
|
||||
* @name Hyphenator-hyphenateLanguageElements
|
||||
* @description
|
||||
* Calls hyphenateElement() for all members of elements. This is done with a setTimout
|
||||
* Calls hyphenateElement() for all elements of the specified language.
|
||||
* If the language is '*' then all elements are hyphenated.
|
||||
* This is done with a setTimout
|
||||
* to prevent a "long running Script"-alert when hyphenating large pages.
|
||||
* Therefore a tricky bind()-function was necessary.
|
||||
* @private
|
||||
*/
|
||||
hyphenateDocument = function () {
|
||||
function bind(fun, arg) {
|
||||
hyphenateLanguageElements = function (lang) {
|
||||
function bind(fun, arg1, arg2) {
|
||||
return function () {
|
||||
return fun(arg);
|
||||
return fun(arg1, arg2);
|
||||
};
|
||||
}
|
||||
var i = 0, el;
|
||||
while (!!(el = elements[i++])) {
|
||||
if (el.ownerDocument.location.href === contextWindow.location.href) {
|
||||
window.setTimeout(bind(hyphenateElement, el), 0);
|
||||
var el, i, l;
|
||||
if (lang === '*') {
|
||||
elements.each(function (lang, langels) {
|
||||
var i, l = langels.length;
|
||||
for (i = 0; i < l; i++) {
|
||||
window.setTimeout(bind(hyphenateElement, lang, langels[i]), 0);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
if (elements.list.hasOwnProperty(lang)) {
|
||||
l = elements.list[lang].length;
|
||||
for (i = 0; i < l; i++) {
|
||||
window.setTimeout(bind(hyphenateElement, lang, elements.list[lang][i]), 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* @name Hyphenator-removeHyphenationFromDocument
|
||||
* @description
|
||||
@ -1587,10 +1821,13 @@ var Hyphenator = (function (window) {
|
||||
* @private
|
||||
*/
|
||||
removeHyphenationFromDocument = function () {
|
||||
var i = 0, el;
|
||||
while (!!(el = elements[i++])) {
|
||||
removeHyphenationFromElement(el);
|
||||
}
|
||||
elements.each(function (lang, elo) {
|
||||
var i, l = elo.length, el;
|
||||
for (i = 0; i < l; i++) {
|
||||
removeHyphenationFromElement(elo[i].element);
|
||||
elo[i].hyphenated = false;
|
||||
}
|
||||
});
|
||||
state = 4;
|
||||
},
|
||||
|
||||
@ -1687,7 +1924,7 @@ var Hyphenator = (function (window) {
|
||||
* minor release: new languages, improvements
|
||||
* @public
|
||||
*/
|
||||
version: 'X.Y.Z',
|
||||
version: '4.0.0',
|
||||
|
||||
/**
|
||||
* @name Hyphenator.doHyphenation
|
||||
@ -1892,6 +2129,16 @@ var Hyphenator = (function (window) {
|
||||
defaultLanguage = obj[key];
|
||||
}
|
||||
break;
|
||||
case 'useCSS3hyphenation':
|
||||
if (assert('useCSS3hyphenation', 'boolean')) {
|
||||
css3 = obj[key];
|
||||
}
|
||||
break;
|
||||
case 'unhide':
|
||||
if (assert('unhide', 'string')) {
|
||||
unhide = obj[key];
|
||||
}
|
||||
break;
|
||||
default:
|
||||
onError(new Error('Hyphenator.config: property ' + key + ' not known.'));
|
||||
}
|
||||
@ -1923,7 +2170,7 @@ var Hyphenator = (function (window) {
|
||||
autoSetMainLanguage(undefined);
|
||||
gatherDocumentInfos();
|
||||
//console.log('preparing for ' + contextWindow.location.href);
|
||||
prepare(hyphenateDocument);
|
||||
prepare(hyphenateLanguageElements);
|
||||
if (displayToggleBox) {
|
||||
toggleBox();
|
||||
}
|
||||
@ -2022,8 +2269,7 @@ var Hyphenator = (function (window) {
|
||||
if (n.nodeType === 3 && n.data.length >= min) { //type 3 = #text -> hyphenate!
|
||||
n.data = n.data.replace(Hyphenator.languages[lang].genRegExp, hyphenate);
|
||||
} else if (n.nodeType === 1) {
|
||||
// Modified by Kovid to use element lang only if it has been loaded
|
||||
if (n.lang !== '' && Hyphenator.languages.hasOwnProperty(n.lang)) {
|
||||
if (n.lang !== '') {
|
||||
Hyphenator.hyphenate(n, n.lang);
|
||||
} else {
|
||||
Hyphenator.hyphenate(n, lang);
|
||||
@ -2115,7 +2361,7 @@ var Hyphenator = (function (window) {
|
||||
storeConfiguration();
|
||||
toggleBox();
|
||||
} else {
|
||||
hyphenateDocument();
|
||||
hyphenateLanguageElements('*');
|
||||
Hyphenator.doHyphenation = true;
|
||||
storeConfiguration();
|
||||
toggleBox();
|
||||
@ -2140,4 +2386,4 @@ if (Hyphenator.isBookmarklet()) {
|
||||
Hyphenator.config({displaytogglebox: true, intermediatestate: 'visible', doframes: true});
|
||||
Hyphenator.config(Hyphenator.getConfigFromURI());
|
||||
Hyphenator.run();
|
||||
}
|
||||
}
|
||||
BIN
resources/viewer/hyphenate/patterns.zip
Normal file
BIN
resources/viewer/hyphenate/patterns.zip
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,13 +0,0 @@
|
||||
// For questions about the Bengali hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['bn'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 1,
|
||||
specialChars : unescape("আঅইঈউঊঋএঐঔকগখঘঙচছজঝঞটঠডঢণতথদধনপফবভমযরলশষসহিীাুূৃোোৈৌৗ্ঃং%u200D"),
|
||||
patterns : {
|
||||
2 : "অ1আ1ই1ঈ1উ1ঊ1ঋ1এ1ঐ1ঔ1ি1া1ী1ু1ৃ1ে1ো1ৌ1ৗ1্2ঃ1ং11ক1গ1খ1ঘ1ঙ1চ1ছ1জ1ঝ1ঞ1ট1ঠ1ড1ঢ1ণ1ত1থ1দ1ধ1ন1প1ফ1ব1ভ1ম1য1র1ল1শ1ষ1স1হ",
|
||||
3 : "2ঃ12ং1"
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
@ -1,16 +0,0 @@
|
||||
Hyphenator.languages['da'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 2,
|
||||
longestPattern : 8,
|
||||
specialChars : "æøå",
|
||||
patterns : {
|
||||
3 : "a3ca1ea3ha3ja5oa5z1ba4bd1be1bib1j1bo4bsb5t3bub5w1by1ce3chck35cy3dad1b1ded1fd1gd3h1did3jd1kd1ld1m3dod1p1dud1v3dye3ee1he5x1faf1bf1d1fef1ff1gf1h1fif1k3fl1fof1p4ft1fuf1v3fy1gag1bg1d1geg3fg1gg1h1gi5gjg3kg1lg1m3gog3p1grg3v1gyi1ai3bi1ci3hi5ii5ji1uj5kj3rk5bk3hk1kk1tl1bl1fl3hl3jl1ll3r4ls1mam1bm3d1mem3fm1gm3h1mim3km1lm1mm1n3mom1r3my3nan1bn1c4nd1nen1f1nin1mn1n1non5pn3r4ns3nyn3zo3ao1co1eo5ho1jo3t3pap3dp3fp3mp3np1t1pup5vqu4r1br1fr1hr1lr1nr3pr1rs1d1ses1fs1msp44tbt1ht1mt1n4tsu1au1eu3iu5qv5hv5jv5kvl41vov5pv5t3vuy3ay3ey5o5bæ3dæ3døe3æe5å3fæ3fø3gæ3gåi3ø3kø3kå1mæ3mø3må3næ5nøo5åpå31sæ1sø5våæ3cæ3eæ5iæ5oø3eå1då1eå5hå3lå3t",
|
||||
4 : "_ae3_om1_po15adg5afgaf3r5afsa4gia4gya5kaa3kea5kraku5a3laa1lea1lial3ka1loa3lua1lya3nu3anva5pea3pia5poa1ra1arba1re5arga1ria3roa3saa3sca1sia3ska3soa1tea1tia1toa5tra1tua5vaa1vebe1k4b1n1br4bs5kb3sob1stby5s4c1c4ch_ci4oda4sd1d4de5ddi1edi5l4d1n4dopd5ovd5rud4smd4sud3tad1tedt5od5trdt5udub5e5ade3afe5age3ake1ale3ane5ape3ate3blebs3e1cie4do3effe3fr3efte3gue3inei5se3jee1kae3kee3kle5kre3kue1kve5kye3lee1lie3loe5lue3lyem1s4enne4noe5nue5ole3ope1ore3ovepi3e1pre3rae1ree1rier1ker3se5rye1tae1tee1tie3tje1toe3tre3tue1tye3ume3un3eure1vae3vee1vifej4f1s4f3taf1tef1tif5toge3sgi4bg5ovgs1ag4segs1pgs1vg3tag1teg1tig5tog3trgt4sg3udgun5g5yd4ha_he5s4hethi4ehi3s4h3thun4hvo4i3dri1eli1eni3erif3ri3gui1kai1keik1li5koi3kuik3vi3liil3ki1loil5ui3mu5infin3si3nui3odi3ogi5oki3olion4i3oti5pii5pri3rei3riir5ti3sci3sii4smis3pi1tai1tei1tii3toi3tri1tui3tyi1vai1vei1vij3agjds1j3lej3lijre5ju3s5kapk5au5kavki3ek1le3kluk4ny5kod1konko3v1kra5kryk1siks3kks1pks5vkt5s3kur1kus3kutk4vok4vu5lab5lam1latl3dr1le_5led3len1ler1les4leuli5ol1kel1kol3kyl5mul3op3lov4l3pl4psl5sjl1tal1tel3tilt3ol3trl3tulu5ll3vel3vimi3kmi4o4mopm1pem3pim3plm1pom3prm5skms3pms5vm3tam3tem3tim3trm1ud1mul4nak1naln3drne5aneo4n4go4n1h4nimni5on1ken1kon3krn3kun5kv4n1ln3sin1tan1ten1tin3ton1trn3tun3ty4n1vo4asod5sof5ro5ino3kao1keo3kuo3lao3leo1lio1loo3luo5ly1omron3kook5o3oro5ovo3piop3lop3rop3s4or_o3rior3kor5oo3sio3soo1teo5unov4s4pec3pen1perpe5spe3u4p5h1pla5pok3potp4rop3skp5sops4pp3stpu5b5py34rafr3dr1relr1guri1er3kar1ker1kir3kurmo4r5muro1bro3pr3orr1sar1sirs4nr3spr5sur3svr1ter1tir3tort3sr5tyr3ud5rutr3var1ver3viry4ss3af1sams3aps1ar1sat4s1bsdy4s4ed4s3h1sig5sis5sit5sius5ju4sk_1skes3kl5skys1les1lislo35slus5lys4myso5k5sol3sons1pls5r4s1s44st_5stj3sto1strs1ud3suls3un3surs3ve3s4y5ta_1tag3tegteo14t1f6t3g3tid4t3k4t1l4t3pt4ra1tryt3sit3st4t1t5turt5ve1typ5udlud5rud3s3udvugs3u5guu5klu1lau1leu5lyu5peup5lu3rau3reu3rous5au3siu5sous5vu1teu1tiu1tout5r5u5vva5d1vedve3s5vet1visv3lev5livls1v5rev3stv5suy5dry3key5kiy3koy3kvy5liy5loy5muyns5y1pey3piy3rey3riy3siy3tiy5vezi5o_så3a3tøa5væe3læe3løe3røe5tæe5tøe1vægiø4g4søg5så3gø1i5tæl3væ5løsm5tån3kæn5tæo5læor3ø5præ5pædr5kær5tær5tør3vær5æl4røn5rør3rådr5års4kå3slås4næ5stø1stås5økti4øt4søt5såt3væu3læy5vææb3læg5aægs5æ5kvæ1reæ3riær5sæ5siæ3soæ3veøde5ø1jeø3keø3leøms5ø1reø3riør5oø1veå3reå5sk",
|
||||
5 : "_an3k_an1s_be1t_her3_ove4_til3_yd5rab5le3abstaf4ria4gefag5inag5si3agtiais5t4alkval5siam4paar5af3a3spa3stea3stia1ta1ato5vba4tibe3robe5rube1s4be1trbi5skbo4grbo3rabo5rece5ro4d3afde5sk3drif3drivd5rosds5ands5ind1skidsu5lds5viea4laed5aredde4ed5raed3re4e1koek5sa3ekspe3ladel3akel3are1lase4lek3elem5elimel5sae4maden5ake4nanen3soer3afe4rage4rake4ref5erhve4ribero5der5over5tre3rumer5unfa4cefags3fejl1fo4rif5tvig3artgi3st4g5omgsha4g5slags3org4strheds3hi4n5ho5koho5vehund3i4bleids5ki3et_ik3reik5riiks5tik4tui3lagil3egil5ejil5elind3tings1in4svions1i5o5ri3plii3stii5suakel5ske3skke5stki3stk5lakko3ra3kortks3ank3stek5stuk4tarkti4ekt5relad3r5lagdld3st4lelele4molfin4l1go1li4galo4du4l5orlses1ls5inl4taf4m5ejm5ingmmen5mo4da4m5ovmse5sms5inm3stemu1lind5sind5sknd5spne4dan3erkn5erlne5slne5stni3stn3ordn1skuns3pon1stan5stint4suob3lio4dinod5riod5uno4geko4gelo4g5oog5reog5sk3optaor1an3ordnord5so3re_o3rego3reko3rero3retor5imor3slor3stpa5ghp5anlpe1rap4lan4ple_4pler4ples4p5p41procp5ulera5is4rarbrd4s34reksre5la5rese4ressre3st5rettri5la4rimor4ing4rinp4rintrk3sorre5sr5skrr5stur5talrt3rer5trir5trosa4ma5s4erse4se4s1g4si4bls5int1skabsk5s44snins4nit5som_3somms5oms5somt4s1op3spec4sper3s4pi1stanst5as3stat1stav1ste_1sted3stel1sten5step3stes5stetst5om1sy1s4tanvteds55tekn5termte5roti4enti3stto5rato1reto1ritor4m4trestro5vts4pats5prts5ult5udsue4t5uk4tauk4tru1reru5skaut5s43varm4v5omyk3liyk4s5yr3eky5t3r_ær5i_øv3rbrød35drøvdstå4er5øn4n5æb4s5ænså4r53værd1værkæ4gekæ4g5rælle4æn1drær4maær4moæ3steøn3støn4t3ørne3års5t",
|
||||
6 : "_be5la_bi4tr_der3i_ne4t5ade5la5a4f1l3analyan4k5ra4t5ind5antade4rig4dretteddel5ed3rined4stre4j5el3eksemer5egeetek4sfor1enger3ini4l5idinter1i1sterit5re_jek4to4j5en_ke4t5ak4terhla4g3rlfind54l5ins4l3intmi5stynemen4nta4lent4s5toi6s5eo3re3so4r5in4po3rer4d5arr5enssre5spore5s4urro4n5r4sk5vr4telir4t5orrt5ratrun4da5s4tam5stemo3ster_tands3tede4ltli4s5uge4riu4r3egve4l5eve4reg3træk_ær4g5r",
|
||||
7 : "_hoved3bu4s5tr4de4lemder5eri5d4reveem4p5lee4v3erfjde4rerjlmeld5l4t5erfntiali43orientringse43sprog_vi4l3infø4r5en",
|
||||
8 : "_diagno54g5endengsde4leng5s4tidejlmel4dinement5eringso4rtialis5t",
|
||||
9 : "ldiagnos5lingeniø4"
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
@ -1,20 +0,0 @@
|
||||
// Hyphenation patterns for Modern Monotonic Greek.
|
||||
// Created by Dimitrios Filippou with some ideas borrowed from
|
||||
// Yannis Haralambous, Kostis Dryllerakis and Claudio Beccari.
|
||||
// From http://tug.org/svn/texhyphen/branches/ptex/hyph-utf8/tex/generic/hyph-utf8/patterns/tex/hyph-el-monoton.tex
|
||||
// Converted by Pablo Rodríguez (hyphenator at pragmata dot tk)
|
||||
Hyphenator.languages['el-monoton'] = Hyphenator.languages['el'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 7,
|
||||
specialChars : "αεηιουωϊϋάέήίόύώΐΰίάύέήόώβγκδζθλμπντξρσϲςφχψ'ʼ᾿’᾽",
|
||||
patterns : {
|
||||
2 : "α1ε1η1ι1ο1υ1ω1ϊ1ϋ1ά1έ1ή1ί1ό1ύ1ώ1ΐ1ΰ14'4ʼ4᾿",
|
||||
3 : "α2ια2ία2ίά2ιά2ιά2ϊά2ϊα2υα2ύα2ύά3υά3υε2ιε2ίε2ίέ2ιέ2ιέ2ϊέ2ϊε2υε2ύε2ύέ3υέ3υη2υη2ύη2ύή3υή3υο2ιο2ίο2ίό2ιό2ιό2ϊό2ϊο2υο2ύο2ύό3υό3υυ2ιυ2ίυ2ίύ3ιύ3ια2ηα2ϊα2ϋε2ϊε2ϋο2ηο2ϊι2αι2άι2άι2ει2έι2έι2οι2όι2όι2ωι2ώι2ώ_ι3_ί3_ί3η2αη2άη2άη2εη2έη2έη2οη2όη2όη2ωη2ώη2ώ_η3_ή3_ή3υ2αυ2άυ2άυ2ου2όυ2όυ2ωυ2ώυ2ώ_υ3_ύ3_ύ34β_4γ_4δ_4ζ_4θ_4κ_4λ_4μ_4ν_4ξ_4π_4ρ_4σ_4ϲ_4ς_4τ_4φ_4χ_4ψ_4β'4βʼ4β᾿4γ'4γʼ4γ᾿4δ'4δʼ4δ᾿4ζ'4ζʼ4ζ᾿4θ'4θʼ4θ᾿4κ'4κʼ4κ᾿4λ'4λʼ4λ᾿4μ'4μʼ4μ᾿4ν'4νʼ4ν᾿4ξ'4ξʼ4ξ᾿4π'4πʼ4π᾿4ρ'4ρʼ4ρ᾿4σ'4σʼ4σ᾿4ϲ'4ϲʼ4ϲ᾿4τ'4τʼ4τ᾿4φ'4φʼ4φ᾿4χ'4χʼ4χ᾿4ψ'4ψʼ4ψ᾿_β4_γ4_δ4_ζ4_θ4_κ4_λ4_μ4_ν4_ξ4_π4_ρ4_σ4_ϲ4_τ4_φ4_χ4_ψ4",
|
||||
4 : "ά3η_ά3η_ά3ι_ά3ι_ο2ειό3η_ό3η_ό3ι_ό3ι_4γκ_4μπ_4ντ_4τζ_4τσ_4τϲ_4τς_4μπ'4μπʼ4μπ᾿4ντ'4ντ’4ντ᾿4τζ'4τζʼ4τζ᾿4τσ'4τσʼ4τσ᾽4τϲ'4τϲʼ4τϲ᾿4β1β4γ1γ4δ1δ4ζ1ζ4θ1θ4κ1κ4λ1λ4μ1μ4ν1ν4π1π4ρ1ρ4σ1σ4ϲ1ϲ4τ1τ4φ1φ4χ1χ4ψ1ψ4β1ζ4β1θ4β1κ4β1μ4β1ν4β1ξ4β1π4β1σ4β1ϲ4β1τ4β1φ4β1χ4β1ψ4γ1β4γ1ζ4γ1θ4γ1μ4γ1ξ4γ1π4γ1σ4γ1ϲ4γ1τ4γ1φ4γ1χ4γ1ψ4δ1β4δ1γ4δ1ζ4δ1θ4δ1κ4δ1λ4δ1ξ4δ1π4δ1σ4δ1ϲ4δ1τ4δ1φ4δ1χ4δ1ψ4ζ1β4ζ1γ4ζ1δ4ζ1θ4ζ1κ4ζ1λ4ζ1μτζ2μ4ζ1ν4ζ1ξ4ζ1π4ζ1ρ4ζ1σ4ζ1ϲ4ζ1τ4ζ1φ4ζ1χ4ζ1ψ4θ1β4θ1γ4θ1δ4θ1ζ4θ1κ4θ1μσθ2μϲθ2μ4θ1ξ4θ1π4θ1σ4θ1ϲ4θ1τ4θ1φ4θ1χ4θ1ψ4κ1β4κ1γ4κ1δ4κ1ζ4κ1θ4κ1μ4κ1ξ4κ1π4κ1σ4κ1ϲ4κ1φ4κ1χ4κ1ψ4λ1β4λ1γ4λ1δ4λ1ζ4λ1θ4λ1κ4λ1μ4λ1ν4λ1ξ4λ1π4λ1ρ4λ1σ4λ1ϲ4λ1τ4λ1φ4λ1χ4λ1ψ4μ1β4μ1γ4μ1δ4μ1ζ4μ1θ4μ1κ4μ1λ4μ1ξ4μ1ρ4μ1σ4μ1ϲ4μ1τ4μ1φ4μ1χ4μ1ψ4ν1β4ν1γ4ν1δ4ν1ζ4ν1θ4ν1κ4ν1λ4ν1μ4ν1ξ4ν1π4ν1ρ4ν1σ4ν1ϲ4ν1φ4ν1χ4ν1ψ4ξ1β4ξ1γ4ξ1δ4ξ1ζ4ξ1θ4ξ1κ4ξ1λ4ξ1μ4ξ1ν4ξ1π4ξ1ρ4ξ1σ4ξ1ϲ4ξ1τ4ξ1φ4ξ1χ4ξ1ψ4π1β4π1γ4π1δ4π1ζ4π1θ4π1κ4π1μ4π1ξ4π1σ4π1ϲ4π1φ4π1χ4π1ψ4ρ1β4ρ1γ4ρ1δ4ρ1ζ4ρ1θ4ρ1κ4ρ1λ4ρ1μ4ρ1ν4ρ1ξ4ρ1π4ρ1σ4ρ1ϲ4ρ1τ4ρ1φ4ρ1χ4ρ1ψ4σ1δ4ϲ1δ4σ1ζ4ϲ1ζ4σ1ν4ϲ1ν4σ1ξ4ϲ1ξ4σ1ρ4ϲ1ρ4σ1ψ4ϲ1ψ4τ1β4τ1γ4τ1δ4τ1θ4τ1κ4τ1ν4τ1ξ4τ1π4τ1φστ2φϲτ2φ4τ1χ4τ1ψ4φ1β4φ1γ4φ1δ4φ1ζ4φ1κ4φ1μ4φ1ν4φ1ξ4φ1π4φ1σ4φ1ϲ4φ1χ4φ1ψ4χ1β4χ1γ4χ1δ4χ1ζ4χ1κ4χ1μ4χ1ξ4χ1π4χ1σ4χ1ϲ4χ1φ4χ1ψ4ψ1β4ψ1γ4ψ1δ4ψ1ζ4ψ1θ4ψ1κ4ψ1λ4ψ1μ4ψ1ν4ψ1ξ4ψ1π4ψ1ρ4ψ1σ4ψ1ϲ4ψ1τ4ψ1φ4ψ1χ4βρ_4γλ_4κλ_4κτ_6κς_6κϲ_4κσ_4λς_4λϲ_4λσ_4μς_4μϲ_4μσ_4νς_4νϲ_4νσ_4ρς_4ρϲ_4ρσ_4σκ_4ϲκ_4στ_4ϲτ_4τλ_4τρ_4φτ_",
|
||||
5 : "ο3ϊ3όο3ϊ3ό4γ1κτ4μ1πτ4ν1τζ4ν1τσ4ν1τϲ4γκς_4γκϲ_4γκσ_4μπλ_4μπν_4μπρ_4ντς_4ντϲ_4ντσ_",
|
||||
6 : "4ρ5γ2μ4ρ5θ2μ4λ5κ2μ4ρ5κ2μ4ν5κ2φ4γ5ξ2τ4ρ5ξ2τ4ρ5φ2ν4ρ5χ2μ4μ5ψ2τ4γ5κ2φ4γκ1ντ4γκ1τζ4γκ1τσ4γκ1τϲ4μπ1ντ4μπ1τζ4μπ1τσ4μπ1τϲ4ντ1μπ4τσ1γκ4τϲ1γκ4τσ1μπ4τϲ1μπ4τσ1ντ4τϲ1ντ",
|
||||
10 : "4χτ_4γκ1μπ"
|
||||
}
|
||||
};
|
||||
@ -1,26 +0,0 @@
|
||||
// Hyphenation patterns for Modern Polytonic Greek.
|
||||
// Created by Dimitrios Filippou with some ideas borrowed from
|
||||
// Yannis Haralambous, Kostis Dryllerakis and Claudio Beccari.
|
||||
// From http://tug.org/svn/texhyphen/branches/ptex/hyph-utf8/tex/generic/hyph-utf8/patterns/tex/hyph-el-polyton.tex
|
||||
// Converted by Pablo Rodríguez (hyphenator at pragmata dot tk)
|
||||
Hyphenator.languages['el-polyton'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 11,
|
||||
specialChars : "αεηιουωϊϋἀἁἂἃἄἅἆἇἐἑἒἓἔἕἠἡἢἣἤἥἦἧἰἱἲἳἴἵἶἷὀὁὂὃὄὅὐὑὒὓὔὕὖὗὠὡὢὣὤὥὦὧὰὲὴὶὸὺὼᾀᾁᾂᾃᾄᾅᾆᾇᾐᾑᾒᾓᾔᾕᾖᾗᾠᾡᾢᾣᾤᾥᾦᾧᾲᾳᾴᾶᾷῂῃῄῆῇῒῖῗῢῦῧῲῳῴῶῷάέήίόύώΐΰάέήίόύώΐΰβγκδζθλμπντξρσϲςφχψ'ʼ᾿’᾽ῤῥ",
|
||||
patterns : {
|
||||
2 : "α1ε1η1ι1ο1υ1ω1ϊ1ϋ1ἀ1ἁ1ἂ1ἃ1ἄ1ἅ1ἆ1ἇ1ἐ1ἑ1ἒ1ἓ1ἔ1ἕ1ἠ1ἡ1ἢ1ἣ1ἤ1ἥ1ἦ1ἧ1ἰ1ἱ1ἲ1ἳ1ἴ1ἵ1ἶ1ἷ1ὀ1ὁ1ὂ1ὃ1ὄ1ὅ1ὐ1ὑ1ὒ1ὓ1ὔ1ὕ1ὖ1ὗ1ὠ1ὡ1ὢ1ὣ1ὤ1ὥ1ὦ1ὧ1ὰ1ὲ1ὴ1ὶ1ὸ1ὺ1ὼ1ᾀ1ᾁ1ᾂ1ᾃ1ᾄ1ᾅ1ᾆ1ᾇ1ᾐ1ᾑ1ᾒ1ᾓ1ᾔ1ᾕ1ᾖ1ᾗ1ᾠ1ᾡ1ᾢ1ᾣ1ᾤ1ᾥ1ᾦ1ᾧ1ᾲ1ᾳ1ᾴ1ᾶ1ᾷ1ῂ1ῃ1ῄ1ῆ1ῇ1ῒ1ῖ1ῗ1ῢ1ῦ1ῧ1ῲ1ῳ1ῴ1ῶ1ῷ1ά1έ1ή1ί1ό1ύ1ώ1ΐ1ΰ1ά1έ1ή1ί1ό1ύ1ώ1ΐ1ΰ16'6ʼ6᾿",
|
||||
3 : "α2ια2ία2ία2ὶα2ῖα2ἰα2ἴα2ἲα2ἶα2ἱα2ἵα2ἳα2ἷά2ιά2ιά2ϊά2ϊα2υα2ύα2ύα2ὺα2ῦα2ὐα2ὔα2ὒα2ὖα2ὑα2ὕα2ὓα2ὗά3υά3υε2ιε2ίε2ίε2ὶε2ῖε2ἰε2ἴε2ἲε2ἶε2ἱε2ἵε2ἳε2ἷέ2ιέ2ιέ2ϊέ2ϊε2υε2ύε2ύε2ὺε2ῦε2ὐε2ὔε2ὒε2ὖε2ὑε2ὕε2ὓε2ὗέ3υέ3υη2υη2ύη2ύη2ὺη2ῦη2ὐη2ὔη2ὒη2ὖη2ὑη2ὕη2ὓη2ὗο2ιο2ίο2ίο2ὶο2ῖο2ἰο2ἴο2ἲο2ἶο2ἱο2ἵο2ἳο2ἷό2ιό2ιό2ϊό2ϊο2υο2ύο2ύο2ὺο2ῦο2ὐο2ὔο2ὒο2ὖο2ὑο2ὕο2ὓο2ὗό3υό3υυ2ιυ2ίυ2ίυ2ὶυ2ῖυ2ἰυ2ἴυ2ἲυ2ἶυ2ἱυ2ἵυ2ἳυ2ἷα2ηα2ϊα2ϋά3ϋά3ϋε2ηέ2ηέ2ηε2ϊε2ϋό2ηό2ηο2ϊω2ιὠ2ιι2αι2άι2άι2ὰι2ᾶι2ει2έι2έι2ὲι2οι2όι2όι2ὸι2ωι2ώι2ώι2ὼι2ῶ_ί3_ί3_ῖ3_ἰ3_ἱ3η2αῃ2αη2άη2άη2ὰη2ᾶῃ2άῃ2άῃ2ὰῃ2ᾶη2εῃ2εη2έη2έη2ὲῃ2έῃ2έῃ2ὲη2οῃ2οη2όη2όη2ὸῃ2όῃ2όῃ2ὸη2ωῃ2ωη2ώη2ώη2ὼη2ῶῃ2ώῃ2ώῃ2ὼῃ2ῶ_ή3_ή3_ῆ3_ἠ3_ἡ3υ2αυ2άυ2άυ2ὰυ2ᾶυ2ευ2έυ2έυ2ὲυ2ου2όυ2όυ2ὸυ2ωυ2ώυ2ώυ2ὼυ2ῶ_ύ3_ύ3_ῦ3_ὑ36β_6γ_6δ_6ζ_6θ_6κ_6λ_6μ_6ν_6ξ_6π_6ρ_6σ_6ϲ_6ς_6τ_6φ_6χ_6ψ_6β'6βʼ6β᾿6γ'6γʼ6γ᾿6δ'6δʼ6δ᾿6ζ'6ζʼ6ζ᾿6θ'6θʼ6θ᾿6κ'6κʼ6κ᾿6λ'6λʼ6λ᾿6μ'6μʼ6μ᾿6ν'6νʼ6ν᾿6ξ'6ξʼ6ξ᾿6π'6πʼ6π᾿6ρ'6ρʼ6ρ᾿6σ'6σʼ6σ᾿6ϲ'6ϲʼ6ϲ᾿6τ'6τʼ6τ᾿6φ'6φʼ6φ᾿6χ'6χʼ6χ᾿6ψ'6ψʼ6ψ᾿_β6_γ6_δ6_ζ6_θ6_κ6_λ6_μ6_ν6_ξ6_π6_ρ6_σ6_ϲ6_τ6_φ6_χ6_ψ6",
|
||||
4 : "ά3η_ά3η_ά3ι_ά3ι_ά3ϊ_ά3ϊ_ό2ειό2ειό3η_ό3η_ό3ι_ό3ι_ό3ϊ_ό3ϊ_6γκ_6μπ_6ντ_6τζ_6τσ_6τϲ_6τς_6μπ'6μπʼ6μπ᾿6ντ'6ντ’6ντ᾿6τζ'6τζʼ6τζ᾿6τσ'6τσʼ6τσ᾽6τϲ'6τϲʼ6τϲ᾿4β1β4γ1γ4δ1δ4ζ1ζ4θ1θ4κ1κ4λ1λ4μ1μ4ν1ν4π1π4ρ1ρ4ῤ1ῥ4σ1σ4ϲ1ϲ4τ1τ4φ1φ4χ1χ4ψ1ψ4β1ζ4β1θ4β1κ4β1μ4β1ν4β1ξ4β1π4β1σ4β1ϲ4β1τ4β1φ4β1χ4β1ψ4γ1β4γ1ζ4γ1θ4γ1κ4γ1μ4γ1ξ4γ1π4γ1σ4γ1ϲ4γ1τ4γ1φ4γ1χ4γ1ψ4δ1β4δ1γ4δ1ζ4δ1θ4δ1κ4δ1λ4δ1ξ4δ1π4δ1σ4δ1ϲ4δ1τ4δ1φ4δ1χ4δ1ψ4ζ1β4ζ1γ4ζ1δ4ζ1θ4ζ1κ4ζ1λ4ζ1μτζ2μ4ζ1ν4ζ1ξ4ζ1π4ζ1ρ4ζ1σ4ζ1ϲ4ζ1τ4ζ1φ4ζ1χ4ζ1ψ4θ1β4θ1γ4θ1δ4θ1ζ4θ1κ4θ1μσθ2μϲθ2μ4θ1ξ4θ1π4θ1σ4θ1ϲ4θ1τ4θ1φ4θ1χ4θ1ψ4κ1β4κ1γ4κ1δ4κ1ζ4κ1θ4κ1ξ4κ1π4κ1σ4κ1ϲ4κ1φ4κ1χ4κ1ψ4λ1β4λ1γ4λ1δ4λ1ζ4λ1θ4λ1κ4λ1μ4λ1ν4λ1ξ4λ1π4λ1ρ4λ1σ4λ1ϲ4λ1τ4λ1φ4λ1χ4λ1ψ4μ1β4μ1γ4μ1δ4μ1ζ4μ1θ4μ1κ4μ1λ4μ1ξ4μ1π4μ1ρ4μ1σ4μ1ϲ4μ1τ4μ1φ4μ1χ4μ1ψ4ν1β4ν1γ4ν1δ4ν1ζ4ν1θ4ν1κ4ν1λ4ν1μ4ν1ξ4ν1π4ν1ρ4ν1σ4ν1ϲ4ν1τ4ν1φ4ν1χ4ν1ψ4ξ1β4ξ1γ4ξ1δ4ξ1ζ4ξ1θ4ξ1κ4ξ1λ4ξ1μ4ξ1ν4ξ1π4ξ1ρ4ξ1σ4ξ1ϲ4ξ1τ4ξ1φ4ξ1χ4ξ1ψ4π1β4π1γ4π1δ4π1ζ4π1θ4π1κ4π1μ4π1ξ4π1σ4π1ϲ4π1φ4π1χ4π1ψ4ρ1β4ρ1γ4ρ1δ4ρ1ζ4ρ1θ4ρ1κ4ρ1λ4ρ1μ4ρ1ν4ρ1ξ4ρ1π4ρ1σ4ρ1ϲ4ρ1τ4ρ1φ4ρ1χ4ρ1ψ4σ1δ4ϲ1δ4σ1ζ4ϲ1ζ4σ1ν4ϲ1ν4σ1ξ4ϲ1ξ4σ1ρ4ϲ1ρ4σ1ψ4ϲ1ψ4τ1β4τ1γ4τ1δ4τ1θ4τ1ν4τ1ξ4τ1π4τ1φστ2φϲτ2φ4τ1χ4τ1ψ4φ1β4φ1γ4φ1δ4φ1ζ4φ1κ4φ1ν4φ1ξ4φ1π4φ1σ4φ1ϲ4φ1χ4φ1ψ4χ1β4χ1γ4χ1δ4χ1ζ4χ1κ4χ1μ4χ1ξ4χ1π4χ1σ4χ1ϲ4χ1φ4χ1ψ4ψ1β4ψ1γ4ψ1δ4ψ1ζ4ψ1θ4ψ1κ4ψ1λ4ψ1μ4ψ1ν4ψ1ξ4ψ1π4ψ1ρ4ψ1σ4ψ1ϲ4ψ1τ4ψ1φ4ψ1χβγ2κσγ2κϲγ2κσμ2πϲμ2πμν2τσν2τϲν2τ6βρ_6γλ_6κλ_6κτ_6κς_6κϲ_6κσ_6λς_6λϲ_6λσ_6μς_6μϲ_6μσ_6νς_6νϲ_6νσ_6ρς_6ρϲ_6ρσ_6σκ_6ϲκ_6στ_6ϲτ_6τλ_6τρ_6φτ_6χτ_",
|
||||
5 : "ο3ϊ3όο3ϊ3όο3ϊ3ὸβ5ν2τζ5ν2τλ5ν2τρ5ν2τ",
|
||||
6 : "4ρ5γ2μ4ρ5θ2μ4λ5κ2μ4ρ5κ2μ4γ5κ2φ4ν5κ2φ4γ5ξ2τ4ρ5ξ2τ4ρ5φ2ν4ρ5χ2μ4μ5ψ2τ4λ5γ2κ4ν5γ2κ4ρ5γ2κ4τ5γ2κ4ζ5μ2π4λ5μ2π4ν5μ2π4ρ5μ2πἄ5μ2ακἀ5μ2πρὄ5μ2ποὀ5μ2ποὀ5ν2τάὀ5ν2τάὀ5ν2τὰὀ5ν2τᾶ6μ2πλ_6μ2πν_6μ2πρ_",
|
||||
7 : "ἰ5γ2κου_ξε5γ2κ_ξέ5γ2κ_ξέ5γ2κ_σι5γ2κ_ϲι5γ2κἀ5μ2πάκἀ5μ2πάκἀ5μ2πανἀ5μ2πάρἀ5μ2πάρἀ5μ2πᾶρἀ5μ2παρἀρα5μ2πἰ5μ2πρα_κε5μ2π_λό5μ2π_λό5μ2π5μ2πέη_5μ2πέη_5μ2πεη_5μ2πογι_ξε5μ2π_ξέ5μ2π_ξέ5μ2π_ρε5μ2π_ρέ5μ2π_ρέ5μ2π_ρο5μ2πρό5μ2παρό5μ2παρό5μ2περό5μ2περό5μ2πωρό5μ2πωρο5μ2πῶρο5μ2παρο5μ2περο5μ2πωσό5μ2πασό5μ2παϲό5μ2παϲό5μ2πασό5μ2πεσό5μ2πεϲό5μ2πεϲό5μ2πεσο5μ2πῶϲο5μ2πῶσό5μ2πωσό5μ2πωϲό5μ2πωϲό5μ2πωσο5μ2παϲο5μ2πασο5μ2πεϲο5μ2πεσο5μ2πωϲο5μ2πω_τα5μ2π_χα5μ2π_χό5μ2π_χό5μ2π_ξε5ν2τ_ξέ5ν2τ_ξέ5ν2τ6γ2κ1τζ6γ2κ1τσ6γ2κ1τϲ6μ2π1τζ6μ2π1τσ6μ2π1τϲ6τσ5γ2κ6τϲ5γ2κ6τσ5μ2π6τϲ5μ2π6τσ5ν2τ6τϲ5ν2τ",
|
||||
8 : "ἐμι5γ2κρ_μπα5γ2κ_μπι5γ2κ_σπά5γ2κ_σπά5γ2κ_ϲπά5γ2κ_ϲπά5γ2κ_σπα5γ2κ_ϲπα5γ2κ_φιό5γ2κ_φιό5γ2κ_φιο5γ2κἀ6μ3πάριἀ6μ3πάριἀ6μ3παρι_γά5μ2πι_γά5μ2πι_γα5μ2πι_ζεϊ5μ2π_κό5μ2πρ_κό5μ2πρ_κο5μ2πρ_λι5μ2πρ5μ2πέης_5μ2πέης_5μ2πέηϲ_5μ2πέηϲ_5μ2πεης_5μ2πεηϲ_5μ2πέησ_5μ2πέησ_5μ2πεησ__μπι5μ2π_τρο6μ3π_τρό6μ3π_τρό6μ3π_ρου5μ2π_σέ5μ2πρ_σέ5μ2πρ_ϲέ5μ2πρ_ϲέ5μ2πρ_σνο5μ2π_ϲνο5μ2π_σού5μ2π_σού5μ2π_ϲού5μ2π_ϲού5μ2π_σου5μ2π_ϲου5μ2π_τζά5μ2π_τζά5μ2π_τζα5μ2π_τζι5μ2π_τό5μ2πρ_τό5μ2πρ_το5μ2πρ_φρα5μ2πἀ5ν2τάτζἀ5ν2τάτζ_βί5ν2τε_βί5ν2τε_βι5ν2τε_κα5ν2τρ_μαϊ5ν2τ_μπε5ν2τ_μπι5ν2τ_ντα5ν2τ5ν2τίβαν5ν2τίβαν_ρε5ν2τί_ρε5ν2τί_ρε5ν2τι_ροῦ5ν2τ_ρού5ν2τ_ρού5ν2τ_χα5ν2το_χα5ν2τρ_χά5ν2τρ_χά5ν2τρ6γ2κ5μ2π6γ2κ5ν2τ6μ2π5ν2τ6ν2τ5μ2π",
|
||||
9 : "5γ2κραντ_ἴντρι5γ2κἰντρι5γ2κ_μα5γ2κιό_μα5γ2κιό_ντά5γ2κλ_ντά5γ2κλ_ντα5γ2κλἀλα5μ2πουἀρλού5μ2πἀρλού5μ2πἀρλοῦ5μ2πἀρλου5μ2π_βό5μ2πιρ_βό5μ2πιρ_βο5μ2πιρ_κα5μ2πάδ_κα5μ2πάδ_κα5μ2πίν_κα5μ2πίν_κα5μ2πῖν_κα5μ2πιν_κά5μ2ποτ_κά5μ2ποτ_κα5μ2πότ_κα5μ2πότ_κα5μ2ποτ_καου5μ2π_καρα5μ2π5μ2πα5μ2π5μ2πά5μ2π5μ2πά5μ2π5μ2πέ5μ2π5μ2πέ5μ2π5μ2πε5μ2π_νό5μ2πελ_νό5μ2πελ_νο5μ2πελ_ντό5μ2πρ_ντό5μ2πρ_ντο5μ2πρ_σα2μ5ποτ_ϲα2μ5ποτ_τε5μ2πεσ_τε5μ2πεϲ_τζου5μ2π_τσά5μ2πα_τσά5μ2πα_τϲά5μ2πα_τϲά5μ2πα_τσα5μ2πα_τϲα5μ2παἀτρα5ν2τέἀτρα5ν2τέἀτρα5ν2τὲ_γιβε5ν2τ_γκάι5ν2τ_γκάι5ν2τ_γκάϊ5ν2τ_γκάϊ5ν2τ_γκαϊ5ν2τ_κα5ν2ταΐ_κα5ν2ταΐ_κα5ν2ταϊ_μα5ν2τάμ_μα5ν2τάμ_μα5ν2τὰμ_μα5ν2ταμ_μα5ν2τέμ_μα5ν2τέμ_μα5ν2τεμ_μεϊ5ν2τά_μεϊ5ν2τά_μεϊ5ν2τα_μο5ν2τέλ_μο5ν2τέλ_μο5ν2τελμο5ν2τέρνμο5ν2τέρνμο5ν2τερν_νισα5ν2τ_νιϲα5ν2τ_ρεζε5ν2τ_σε5ν2τέφ_σε5ν2τέφ_ϲε5ν2τέφ_ϲε5ν2τέφ_σε5ν2τεφ_ϲε5ν2τεφ_σε5ν2τοῦ_ϲε5ν2τοῦ_σε5ν2τού_σε5ν2τού_ϲε5ν2τού_ϲε5ν2τού_σε5ν2του_ϲε5ν2του_τσα5ν2τί_τσα5ν2τί_τϲα5ν2τί_τϲα5ν2τί_τσα5ν2τι_τϲα5ν2τι",
|
||||
10 : "_γιου5γ2κο_καρα5γ2κι_χούλι5γ2κ_χούλι5γ2κ_χουλι5γ2κ_γιαρα5μ2π_καλα5μ2πα_καλί5μ2πρ_καλί5μ2πρ_καλι5μ2πρ_κα5μ2παρέ_κα5μ2παρέ_κα5μ2παρὲ_κα5μ2παρε_καρνα5μ2π_κολι5μ2πρ_κου5μ2πού_κου5μ2πού_κου5μ2ποῦ_κου5μ2που5μ2πέηδες_5μ2πέηδες_5μ2πέηδεϲ_5μ2πέηδεϲ_5μ2πέηδεσ_5μ2πέηδεσ_5μ2πέηδων_5μ2πέηδων__μπό5μ2πιρ_μπό5μ2πιρ_μπο5μ2πιρ_μπο5μ2πότ_μπο5μ2πότ_μπο5μ2ποτ_σκα5μ2παβ_ϲκα5μ2παβ_ταβλα5μ2π_τζανα5μ2π_τρα5μ2πάλ_τρα5μ2πάλ_τρα5μ2παλ_φά5μ2πρικ_φά5μ2πρικ_φα5μ2πρικ_μπαλά5ν2τ_μπαλά5ν2τ_μπαλα5ν2τ_μπα5ν2ταν_μπου5ν2τα_μπου5ν2τρ",
|
||||
11 : "_καρα6μ3πόλ_καρα6μ3πόλ_καρα6μ3πολ_κολού5μ2πρ_κολού5μ2πρ_κολοῦ5μ2πρ_κολου5μ2πρ_κο6μ3πρέσσ_κο6μ3πρέσσ_κο6μ3πρέϲϲ_κο6μ3πρέϲϲ_κο6μ3πρεσσ_κο6μ3πρεϲϲ_κοντρα5μ2π_κωλού5μ2πρ_κωλού5μ2πρ_κωλοῦ5μ2πρ_κωλου5μ2πρ_μανιτό5μ2π_μανιτό5μ2π_μπα6μ3πάκι_μπα6μ3πάκι_μπα6μ3πακι_ρεπού5μ2πλ_ρεπού5μ2πλ_ρεπου5μ2πλ_τα6μ3περαμ_τα6μ3ποῦρλ_τα6μ3πούρλ_τα6μ3πούρλ_τρα5μ2ποῦκ_τρα5μ2πούκ_τρα5μ2πούκ_τρα5μ2πουκ_τσι5μ2πούκ_τσι5μ2πούκ_τϲι5μ2πούκ_τϲι5μ2πούκ_τσι5μ2πουκ_τϲι5μ2πουκ_τσι5μ2πούσ_τσι5μ2πούσ_τϲι5μ2πούϲ_τϲι5μ2πούϲ_τσι5μ2πουσ_τϲι5μ2πουϲ_γιαχου5ν2τ",
|
||||
12 : "_σαλτιπά5γ2κ_σαλτιπά5γ2κ_ϲαλτιπά5γ2κ_ϲαλτιπά5γ2κ_κουλού5μ2πρ_κουλού5μ2πρ_κουλοῦ5μ2πρ_κουλου5μ2πρ_μπου5μ2πούν_μπου5μ2πούν_μπου5μ2ποῦν_μπου5μ2πουν_χοντρο5μ2πα_λικβι5ν2ταρ_ντερμπε5ν2τ_ντου5ν2τούκ_ντου5ν2τούκ_ντου5ν2τοῦκ_ντου5ν2τουκ_φαστφου5ν2τ_φαϲτφου5ν2τ",
|
||||
13 : "_μπασκε2τ5μ2π_μπαϲκε2τ5μ2π_μπασι5μ2πουζ_μπαϲι5μ2πουζ"
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,17 +0,0 @@
|
||||
Hyphenator.languages['fi'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 2,
|
||||
longestPattern : 7,
|
||||
specialChars : "öäå",
|
||||
patterns : {
|
||||
3 : "1ba1be1bi1bo1bu1by1da1de1di1do1du1dy1dä1dö1fa1fe1fi1fo1fu1fy1ga1ge1gi1go1gu1gy1gä1gö1ha1he1hi1ho1hu1hy1hä1hö1ja1je1ji1jo1ju1jy1jä1jö1ka1ke1ki1ko1ku1ky1kä1kö1la1le1li1lo1lu1ly1lä1lö1ma1me1mi1mo1mu1my1mä1mö1na1ne1ni1no1nu1ny1nä1nö1pa1pe1pi1po1pu1py1pä1pö1ra1re1ri1ro1ru1ry1rä1rö1sa1se1si1so1su1sy1sä1sö1ta1te1ti1to1tu1ty1tä1tö1va1ve1vi1vo1vu1vy1vä1vöä2yo1yö2ya1äa1öo1äo1öä2äö2öä2öö2ä_ä2u2sb2lb2rd2rf2lf2rg2lg2rk2lp2lp2rc2lq2v",
|
||||
4 : "y1a2y1o2u1y2y1u2ö3a2ö3o2ä3a2ä3o2ä1u2ö1u2u1ä2u1ö2e1aai1aao1aau1aau1eea1uui1uue1uuo1uuää1iää1eää3yi1ääe1ääy1ääi1ööa1eia1oie1aii1auy1eiai1aai1eai1oai1uau1aau1eeu1aie1aie1oie1yiu1aiu1eiu1ooi1aoi1eoi1ooi1uo1uiou1eou1oue1aui1euo1auo1ue1ö2ö1e2r2asl2as1k2vsc2hts2h",
|
||||
5 : "1st2raa1i2aa1e2aa1o2aa1u2ee1a2ee1i2ee1u2ee1y2ii1a2ii1e2ii1o2uu1a2uu1e2uu1o2uu1i2io1a2io1e2keus11b2lo1b2ri1b2ro1b2ru1d2ra1f2la1f2ra1f2re1g2lo1g2ra1k2ra1k2re1k2ri1k2va1p2ro1q2vich2r",
|
||||
6 : "1sp2lialous1rtaus1perus12s1ase2s1apuulo2s1bib3li",
|
||||
7 : "yli1o2pali1a2v2s1ohje1a2sian1a2siat1a2sioi2s1o2sa2n1o2sa_ydi2n12n1otto2n1oton2n1anto2n1anno2n1aika2n1a2jo2s1a2jo",
|
||||
8 : "2s1a2sia2n1o2pet2s1a2loialkei2s12n1e2dus2s1ajatu2s1y2rit2s1y2hti2n1a2jan2n1o2mai2n1y2lit2s1a2len2n1a2len",
|
||||
9 : "2s1o2pisk2n1o2pist2s1o2pist2s1i2dea_2s1i2dean2s1e2sity_suu2r1a2",
|
||||
11 : "1a2siaka2s1"
|
||||
}
|
||||
};
|
||||
@ -1,26 +0,0 @@
|
||||
// The french hyphenation patterns are retrieved from
|
||||
// http://tug_org/svn/texhyphen/trunk/collaboration/repository/hyphenator/
|
||||
Hyphenator.languages['fr'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 3,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 14,
|
||||
specialChars : "àâçèéêîïôûœ’'",
|
||||
patterns : {
|
||||
2 : "1ç1j1q",
|
||||
3 : "1gè’â41zu1zo1zi1zè1zé1ze1za’y4_y41wu1wo1wi1we1wa1vy1vû1vu1vô1vo1vî1vi1vê1vè1vé1ve1vâ1va’û4_û4’u4_u41ba1bâ1ty1be1bé1bè1bê1tû1tu1tô1bi1bî1to1tî1ti1tê1tè1té1te1tà1tâ1ta1bo1bô1sy1sû1su1sœ1bu1bû1by2’21ca1câ1sô1ce1cé1cè1cê1so1sî1si1sê1sè1sé1se1sâ1sa1ry1rû1ru1rô1ro1rî1ri1rê1rè1ré1re1râ1ra’a41py1pû1pu1pô1po1pî1pi1pê1pè1pé1pe1pâ1pa_ô41ci1cî’ô4’o4_o41nyn1x1nû1nu1nœ1nô1no1nî1ni1nê1nè1né1ne1nâ1co1cô1na1my1mû1mu1mœ1mô1mo1mî1mi1cœ1mê1mè1mé1me1mâ1ma1ly1lû1lu1lô1lo1lî1li1lê1lè1cu1cû1cy1lé1d’1da1dâ1le1là1de1dé1dè1dê1lâ1la1ky1kû1ku1kô1ko1kî1ki1kê1kè1ké1ke1kâ1ka2jk_a4’î4_î4’i4_i41hy1hû1hu1hô1ho1hî1hi1hê1hè1hé1he1hâ1ha1gy1gû1gu1gô1go1gî1gi1gê_â41gé1ge1gâ1ga1fy1di1dî1fû1fu1fô1fo’e41fî1fi1fê1fè1do1dô1fé1fe1fâ1fa’è41du1dû1dy_è4’é4_é4’ê4_ê4_e41zy",
|
||||
4 : "1f2lab2h2ckg2ckp2cksd1s22ckb4ck_1c2k2chw4ze_4ne_2ckt1c2lad2hm1s22cht2chsch2r2chp4pe_1t2r1p2h_ph44ph_ph2l2phnph2r2phs1d2r2pht2chn4fe_2chm1p2l1p2r4me_1w2rch2l2chg1c2r2chb4ch_1f2r4le_4re_4de_f1s21k2r4we_1r2h_kh44kh_1k2h4ke_1c2h_ch44ge_4je_4se_1v2r_sh41s2h4ve_4sh_2shm2shr2shs4ce_il2l1b2r4be_1b2l4he_4te__th41t2h4th_g1s21g2r2thl1g2l2thm2thnth2r1g2n2ths2ckf",
|
||||
5 : "2ck3h4rhe_4kes_4wes_4res_4cke_éd2hi4vre_4jes_4tre_4zes_4ges_4des_i1oxy4gle_d1d2h_cul44gne_4fre_o1d2l_sch44nes_4les_4gre_1s2ch_réu24sch_4the_1g2hy4gue_2schs4cle_1g2ho1g2hi1g2he4ses_4tes_1g2ha4ves_4she_4che_4cre_4ces_t1t2l4hes_l1s2t4bes_4ble__con4xil3lco1ap4que_vil3l4fle_co1arco1exco1enco1auco1axco1ef4pes_co1é2per3h4mes__pe4r4bre_4pre_4phe_1p2né4ple__dé2smil3llil3lhil3l4dre_cil3lgil3l4fes_",
|
||||
6 : "’in1o2rcil4l4phre_4dres_l3lioni1algi2fent_émil4l4phle_rmil4l4ples_4phes_1p2neuextra14pres_y1asthpé2nul2xent__mé2sa2pent_y1algi4chre_1m2nès4bres_1p2tèr1p2tér4chle_’en1o24fles_oxy1a2avil4l_en1o24ques_uvil4lco1a2d4bles__in1a2’in1a21s2por_cons4_bi1u2’as2ta_in1e2’in1e2_in1é2’in1é21s2lov1s2lavco1acq2cent__as2ta_co1o24ches_hémi1é_in2er’in2er2s3homo1ioni_in1i2’in1i22went_4shes__ré1a2_ré1é2_ré1e2_ré2el_in1o2ucil4lco1accu2s3tr_ré2er_ré2èr4cles_2vent__ré1i22sent_2tent_2gent__ré1o24gues__re1s24sche_4thes_’en1a2e2s3ch4gres_1s2cop2lent__en1a22nent__in1u2’in1u24gnes_4cres_wa2g3n4fres_4tres_4gles_1octet_dé1o2_dé1io4thre__bi1au2jent__dé1a22zent_4vres_2dent_4ckes_4rhes__dy2s3sub1s22kent_2rent_2bent_3d2hal",
|
||||
7 : "a2g3nos3d2houdé3rent__dé3s2t_dé3s2pé3dent_2r3heur2r3hydri1s2tat2frent_io1a2ctla2w3re’in2u3l_in2u3l2crent_’in2uit_in2uit1s2caph1s2clér_ré2ussi2s3ché_re2s3t_re2s3s4sches_é3cent__seu2le’in2ond_in2ond’in2i3t_in2i3t’in2i3q_ré2aux_in2i3q2shent__di1alduni1a2x’in2ept2flent__in2eptuni1o2v2brent_co2nurb2chent_2quent_1s2perm1s2phèr_ma2c3kuevil4l1s2phér1s2piel1s2tein1s2tigm4chles_1s2tock1s2tyle1p2sych_pro1é2_ma2r1x_stil3lpusil3libril3lcyril3l_pré1s2thril3l_mé3san_pré1u2_mé2s1i_pré1o2_pré1i2piril3lpupil3lâ2ment__pré1e2_pré1é2_pré2au_pré1a22prent_2vrent_supero2_di1e2npoly1u2è2ment_poly1s2poly1o2poly1i2poly1è2poly1é2poly1e2poly1a2supe4r1capil3l2plent_armil5lsemil4lmil4letvacil4l_di2s3h3ph2tis2dlent_a2s3tro4phres_l2ment_i1è2drei1arthr2drent_4phles_supers2ô2ment_extra2i2phent_su3r2ah_su2r3hextra2chypo1u21alcool_per1u2_per1o2_per1i2_per1é2hypo1s2_per1a2hypo1o2hypo1i2hypo1é2_pen2tahypo1e2hypo1a2y1s2tome2s3cophyperu2hype4r1hypers2hypero21m2némohyperi21m2nési4chres_a1è2drehyperé2hypere2hypera2’oua1ou_oua1ouo1s2tomo1s2timo1s2tato1s2tasomni1s2tung2s3_dé3s2c2blent__bio1a2télé1e2télé1i22clent_télé1s22guent_1é2nerg2grent_2trent__dé2s1œ2t3heuro1è2dre2gnent_2glent_4thres__bi1a2t1é2drie_bi1a2c_i2g3nin3s2at_’i2g3ni2ckent__i2g3né’ab3réa’i2g3né_ab3réa_per1e2",
|
||||
8 : "_ma2l1ap_dy2s1u2_dy2s1o2_dy2s1i2n3s2ats__dy2s1a2distil3l1é2lectrinstil3l1s2trophe2n1i2vro2b3long1s2tomos_ae3s4ch’ae3s4ch_eu2r1a2ombud2s3’eu2r1a2_mono1s2_mono1u2o1s2téro_mono1o2eu1s2tato1s2tradfritil3la2l1algi_mono1i2_mono1é2_ovi1s2c’ovi1s2c_mono1e2_mono1a2co1assocpaléo1é2boutil3l1s2piros_ré2i3fi_pa2n1ischevil4l1s2patiaca3ou3t2_di1a2cé_para1s2_pa2r3héco1assur_su2b1é2tu2ment_su2ment__su2b1in_su2b3lupapil3lire3pent_’inte4r3_su2b1urab3sent__su2b1a2di2s3cophu2ment_fu2ment__intera2au2ment_as2ment_or2ment_’intera2_intere2pé1r2é2q_péri1os_péri1s2ja3cent__anti1a2_péri1u2’anti1a2er2ment__anti1e2ac3cent_ar2ment_to2ment_’intere2ré3gent_papil3leom2ment_’anti1e2photo1s2_anti1é2_interé2’anti1é2_anti1s2’anti1s23ph2talé’interé2ri2ment__interi2’interi2mi2ment_apo2s3tri2s3chio_pluri1ai2s3chia_intero2’intero2_inte4r3po1astre_interu2’interu2_inters2ai2ment_’inters2papil3la_tri1o2n_su2r1a2_pon2tet_pos2t3h_dés2a3mes3cent__pos2t3r_post1s2_tri1a2tta2ment__tri1a2nra2ment_is3cent__su2r1e2_tri1a2cfa2ment_da2ment__su3r2et_su2r1é2_mé2s1es_mé2g1oh_su2r1of_su2r1ox_re3s4ty_re3s4tu_ma2l1oc’a2g3nat_dé2s1é2_ma2l1entachy1a2_pud1d2ltchin3t2_re3s4trtran2s3p_bi2s1a2tran2s3hhémo1p2té3quent__a2g3nat_dé2s1i2télé1o2bo2g3nosiradio1a2télé1o2ppu2g3nacru3lent__sta2g3nre3lent__ré2a3le_di1a2mi",
|
||||
9 : "_ré2a3lit_dé3s2o3lthermo1s2_dé3s2ist_dé3s2i3rmit3tent_éni3tent__do3lent__ré2a3lisopu3lent__pa3tent__re2s3cap_la3tent__co2o3lie_re2s3cou_re2s3cri_ma2g3num_re2s3pir_dé3s2i3dco2g3nititran2s1a2tran2s1o2_dé3s2exu_re3s4tab_re3s4tag_dé3s2ert_re3s4tat_re3s4tén_re3s4tér_re3s4tim_re3s4tip_re3s4toc_re3s4toptran2s1u2_no2n1obs_ma2l1a2v_ma2l1int_prou3d2hpro2s3tativa3lent__ta3lent__rétro1a2_pro1s2cé_ma2l1o2dcci3dent__pa3rent__su2r1int_su2r1inf_su2r1i2mtor3rent_cur3rent__mé2s1u2stri3dent__dé3s2orm_su3r2ell_ar3dent__su3r2eaupru3dent__pré2a3lacla2ment__su3r2a3t_pos2t1o2_pos2t1inqua2ment_ter3gent_ser3gent_rai3ment_abî2ment_éci2ment_’ar3gent__ar3gent_rin3gent_tan3gent_éli2ment_ani2ment_’apo2s3ta_apo2s3tavélo1s2kivol2t1amp_dé3s2orp_dé2s1u2n_péri2s3ssesqui1a2’ana3s4trfir2ment_écu2ment_ser3pent_pré3sent_’ar3pent__ar3pent_’in1s2tab_in1s2tab’in2o3cul_in2o3culplu2ment_bou2ment_’in2exora_in2exora_su2b3linbru2ment__su3b2é3r_milli1am’in2effab_in2effab’in2augur_di1a2cid_in2augur_pa2n1opt’in2a3nit_in2a3nit1informat_ana3s4trvanil3lis_di1a2tom_su3b2altvanil3linstéréo1s2_pa2n1a2fo1s2tratuépi2s3cop_ci2s1alp1s2tructu1é2lément1é2driquepapil3lomllu2ment_",
|
||||
10 : "1s2tandardimmi3nent__émi3nent_imma3nent_réma3nent_épi3s4cope_in2i3miti’in2i3miti_res3sent_moye2n1â2gréti3cent__dé3s2a3crmon2t3réalinno3cent__mono1ï2dé_pa2n1a2méimpu3dent__pa2n1a2ra_amino1a2c’amino1a2c_pa2n1o2phinci3dent__ser3ment_appa3rent_déca3dent__dacryo1a2_dé3s2astr_re4s5trin_dé3s2é3gr_péri2s3ta_sar3ment__dé3s2oufr_re3s4tandchro2ment__com3ment__re2s3quil_re2s3pons_gem2ment__re2s3pect_re2s3ciso_dé3s2i3gn_dé3s2i3ligram2ment__dé3s2invo_re2s3cisitran3s2act’anti2enneindo3lent__sou3vent_indi3gent_dili3gent_flam2ment_impo3tent_inso3lent_esti2ment_’on3guent__on3guent_inti2ment__dé3s2o3défécu3lent_veni2ment_reli2ment_vidi2ment_chlo2r3é2tpu2g3nablechlo2r3a2cryth2ment_o2g3nomonicarê2ment__méta1s2ta_ma2l1aisé_macro1s2célo3quent_tran3s2ats_anti2enne",
|
||||
11 : "_contre1s2cperti3nent_conti3nent__ma2l1a2dro_in2é3lucta_psycho1a2n_dé3s2o3pil’in2é3luctaperma3nent__in2é3narratesta3ment__su2b3liminrésur3gent_’in2é3narraimmis4cent__pro2g3nathchien3dent_sporu4lent_dissi3dent_corpu3lent_archi1é2pissubli2ment_indul3gent_confi3dent__syn2g3nathtrucu3lent_détri3ment_nutri3ment_succu3lent_turbu3lent__pa2r1a2che_pa2r1a2chèfichu3ment_entre3gent_conni3vent_mécon3tent_compé3tent__re4s5trict_dé3s2i3nen_re2s3plend1a2nesthésislalo2ment__dé3s2ensib_re4s5trein_phalan3s2tabsti3nent_",
|
||||
12 : "polyva3lent_équiva4lent_monova3lent_amalga2ment_omnipo3tent__ma2l1a2dreséquipo3tent__dé3s2a3tellproémi3nent_contin3gent_munifi3cent__ma2g3nicideo1s2trictionsurémi3nent_préémi3nent__bai2se3main",
|
||||
13 : "acquies4cent_intelli3gent_tempéra3ment_transpa3rent__ma2g3nificatantifer3ment_",
|
||||
14 : "privatdo3cent_diaphrag2ment_privatdo3zent_ventripo3tent__contre3maître",
|
||||
15 : "grandilo3quent_",
|
||||
16 : "_chè2vre3feuille"
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
@ -1,12 +0,0 @@
|
||||
// For questions about the Gujarati hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['gu'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 1,
|
||||
specialChars : unescape("આઅઇઈઉઊઋએઐઔકગખઘઙચછજઝઞટઠડઢણતથદધનપફબભમયરલવશષસહળિીાુૂૃેાોૈૌ્ઃં%u200D"),
|
||||
patterns : {
|
||||
2 : "અ1આ1ઇ1ઈ1ઉ1ઊ1ઋ1એ1ઐ1ઔ1િ1ા1ી1ુ1ૂ1ૃ1ે1ો1ૌ1્2ઃ1ં11ક1ગ1ખ1ઘ1ઙ1ચ1છ1જ1ઝ1ઞ1ટ1ઠ1ડ1ઢ1ણ1ત1થ1દ1ધ1ન1પ1ફ1બ1ભ1મ1ય1ર1લ1વ1શ1ષ1સ1હ1ળ"
|
||||
}
|
||||
};
|
||||
@ -1,12 +0,0 @@
|
||||
// For questions about the Hindi hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['hi'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 1,
|
||||
specialChars : unescape("आअइईउऊऋऎएऐऒऔकगखघङचछजझञटठडढणतथदधनपफबभमयरलवशषसहळऴऱिीाुूृॆेॊाोैौ्ःं%u200D"),
|
||||
patterns : {
|
||||
2 : "अ1आ1इ1ई1उ1ऊ1ऋ1ऎ1ए1ऐ1ऒ1औ1ि1ा1ी1ु1ू1ृ1ॆ1े1ॊ1ो1ौ1्2ः1ं11क1ग1ख1घ1ङ1च1छ1ज1झ1ञ1ट1ठ1ड1ढ1ण1त1थ1द1ध1न1प1फ1ब1भ1म1य1र1ल1व1श1ष1स1ह1ळ1ऴ1ऱ"
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,20 +0,0 @@
|
||||
Hyphenator.languages['it'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 8,
|
||||
specialChars : "àéèìòù’'",
|
||||
// The italian hyphenation patterns are retrieved from
|
||||
// http://www.ctan.org/tex-archive/language/hyphenation/ithyph.tex
|
||||
patterns : {
|
||||
2 : "1b1c1d1f1g1h1j1k1l1m1n1p1q1r1t1v1w1x1z",
|
||||
3 : "2’2e2w2bb2bc2bd2bf2bm2bn2bp2bs2bt2bvb2lb2r2b_2b’2cb2cc2cd2cf2ck2cm2cn2cq2cs2ct2czc2hc2lc2r2c_2c’_c22db2dd2dg2dl2dm2dn2dpd2r2ds2dt2dv2dw2d_2d’_d22fb2fg2ff2fnf2lf2r2fs2ft2f_2f’2gb2gd2gf2ggg2hg2l2gmg2n2gpg2r2gs2gt2gv2gw2gz2g_2g’2hb2hd2hhh2l2hm2hn2hr2hv2h_2h’2j_2j’2kg2kfk2h2kkk2l2kmk2r2ks2kt2k_2k’2lb2lc2ld2lgl2h2lk2ll2lm2ln2lp2lq2lr2ls2lt2lv2lw2lz2l_2mb2mc2mf2ml2mm2mn2mp2mq2mr2ms2mt2mv2mw2m_2m’2nb2nc2nd2nf2ng2nk2nl2nm2nn2np2nq2nr2ns2nt2nv2nz2n_2n’2pdp2hp2l2pn2ppp2r2ps2pt2pz2p_2p’2qq2q_2q’2rb2rc2rd2rfr2h2rg2rk2rl2rm2rn2rp2rq2rr2rs2rt2rv2rx2rw2rz2r_2r’1s22sz4s_2tb2tc2td2tf2tgt2ht2l2tm2tn2tpt2rt2s2tt2tv2twt2z2t_2vcv2lv2r2vv2v_w2h2w_2w’2xb2xc2xf2xh2xm2xp2xt2xw2x_2x’y1i2zb2zd2zl2zn2zp2zt2zs2zv2zz2z_",
|
||||
4 : "_p2sa1iaa1iea1ioa1iua1uoa1ya2at_e1iuo1iao1ieo1ioo1iu2chh2chbch2r2chn2l’_2l’’2shm2sh_2sh’2s3s2stb2stc2std2stf2stg2stm2stn2stp2sts2stt2stv4s’_4s’’2tzktz2s2t’_2t’’2v’_2v’’wa2r2w1yy1ou2z’_2z’’_z2",
|
||||
5 : "_bio1_pre12gh2t2l3f2n2g3n3p2nes4s3mt2t3s",
|
||||
6 : "_a3p2n_anti1_free3_opto1_para1hi3p2n2nheit3p2sicr2t2s32s3p2n3t2sch",
|
||||
7 : "_ca4p3s_e2x1eu_narco1_su2b3r_wa2g3n_wel2t1n2s3fer",
|
||||
8 : "_contro1_fran2k3_li3p2sa_orto3p2_poli3p2_sha2re3_su2b3lu",
|
||||
9 : "_anti3m2n_circu2m1_re1i2scr_tran2s3c_tran2s3d_tran2s3l_tran2s3n_tran2s3p_tran2s3r_tran2s3t",
|
||||
10 : "_di2s3cine"
|
||||
}
|
||||
};
|
||||
@ -1,13 +0,0 @@
|
||||
// For questions about the Kannada hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['kn'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 1,
|
||||
specialChars : "ಆಅಇಈಉಊಋಎಏಐಒಔಕಗಖಘಙಚಛಜಝಞಟಠಡಢಣತಥದಧನಪಫಬಭಮಯರಲವಶಷಸಹಳಱಿೀಾುೂೃೆೇೊಾೋೈೌ್ಃಂ",
|
||||
patterns : {
|
||||
2 : "ಅ1ಆ1ಇ1ಈ1ಉ1ಊ1ಋ1ಎ1ಏ1ಐ1ಒ1ಔ1ೀ1ು1ೂ1ೃ1ೆ1ೇ1ೊ1ೋ1ೌ1್2ಃ1ಂ11ಕ1ಗ1ಖ1ಘ1ಙ1ಚ1ಛ1ಜ1ಝ1ಞ1ಟ1ಠ1ಡ1ಢ1ಣ1ತ1ಥ1ದ1ಧ1ನ1ಪ1ಫ1ಬ1ಭ1ಮ1ಯ1ರ1ಲ1ವ1ಶ1ಷ1ಸ1ಹ1ಳ1ಱ",
|
||||
3 : "2ಃ12ಂ1"
|
||||
}
|
||||
};
|
||||
@ -1,22 +0,0 @@
|
||||
// Latin hyphenation patterns converted by
|
||||
// Pablo Rodríguez (hyphenator at pragmata dot tk)
|
||||
// based on LaTeX Latin hyphenation patterns by Claudio Beccari
|
||||
// (http://tug.ctan.org/tex-archive/language/hyphenation/lahyph.tex)
|
||||
Hyphenator.languages['la'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 8,
|
||||
specialChars : "æœ",
|
||||
patterns : {
|
||||
2 : "æ1œ11b1c1d1f1g1h1j1k1l1m1n1p1r1t1v1x1z",
|
||||
3 : "2bb2bdb2l2bm2bnb2r2bt2bs2b_2ccc2l2cm2cn2cqc2r2cs2ct2cz2c_2dd2dg2dmd2r2ds2dv2d_2fff2l2fnf2r2ft2f_2gg2gd2gfg2l2gmg2ng2r2gs2gv2g_2hp2ht2h_2kk2lb2lc2ld2lf2lg2lk2ll2lm2ln2lp2lq2lr2ls2lt2lv2l_2mm2mb2mp2ml2mn2mq2mr2mv2m_2nb2nc2nd2nf2ng2nl2nm2nn2np2nq2nr2ns2nt2nv2nx2n_p2hp2l2pn2ppp2r2ps2pt2pz2p_2rb2rc2rd2rf2rgr2h2rl2rm2rn2rp2rq2rr2rs2rt2rv2rz2r_1s22s_2tb2tc2td2tf2tgt2ht2lt2r2tm2tn2tp2tq2tt2tv2t_v2lv2r2vv2xt2xx2x_2z_",
|
||||
4 : "a1iaa1iea1ioa1iuae1aae1oae1ue1iuio1io1iao1ieo1ioo1iuuo3uc2h2k2h22php2pht1qu22s3s2stb2stc2std2stf2stg2stm2stn2stp2stq2sts2stt2stv2st_a1uaa1uea1uia1uoa1uue1uae1uee1uie1uoe1uui1uai1uei1uii1uoi1uuo1uao1ueo1uio1uoo1uuu1uau1ueu1uiu1uou1uu",
|
||||
5 : "_e2x1_o2b3l3f2tn2s3mn2s3f2s3ph2st3l",
|
||||
6 : "_a2b3l_anti13p2sic3p2neua2l1uaa2l1uea2l1uia2l1uoa2l1uue2l1uae2l1uee2l1uie2l1uoe2l1uui2l1uai2l1uei2l1uii2l1uoi2l1uuo2l1uao2l1ueo2l1uio2l1uoo2l1uuu2l1uau2l1ueu2l1uiu2l1uou2l1uua2m1uaa2m1uea2m1uia2m1uoa2m1uue2m1uae2m1uee2m1uie2m1uoe2m1uui2m1uai2m1uei2m1uii2m1uoi2m1uuo2m1uao2m1ueo2m1uio2m1uoo2m1uuu2m1uau2m1ueu2m1uiu2m1uou2m1uua2n1uaa2n1uea2n1uia2n1uoa2n1uue2n1uae2n1uee2n1uie2n1uoe2n1uui2n1uai2n1uei2n1uii2n1uoi2n1uuo2n1uao2n1ueo2n1uio2n1uoo2n1uuu2n1uau2n1ueu2n1uiu2n1uou2n1uua2r1uaa2r1uea2r1uia2r1uoa2r1uue2r1uae2r1uee2r1uie2r1uoe2r1uui2r1uai2r1uei2r1uii2r1uoi2r1uuo2r1uao2r1ueo2r1uio2r1uoo2r1uuu2r1uau2r1ueu2r1uiu2r1uou2r1uu",
|
||||
7 : "_para1i_para1u_su2b3r2s3que_2s3dem_",
|
||||
8 : "_su2b3lu",
|
||||
9 : "_anti3m2n_circu2m1_co2n1iun",
|
||||
10 : "_di2s3cine"
|
||||
}
|
||||
};
|
||||
@ -1,17 +0,0 @@
|
||||
// For questions about the Lithuanian hyphenation patterns
|
||||
// ask Rogutės Sparnuotos (rogutes at googlemail dot com)
|
||||
Hyphenator.languages['lt'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 2,
|
||||
longestPattern : 6,
|
||||
specialChars : "ščžįėūąęų",
|
||||
patterns : {
|
||||
3 : "a1ba1ca1da1ea1fa1ha1ja1ka1la1ma1na2oa1pa1ra1sa1ta4ua1va1wa1ya1za1ąa1ęa1įa1ša1ųa1žb1jcu4d4zd4že1ce1ee1fe1ge1he1je1ke1le1me2oe3pe1re1se1te1ve1we1ye1ze1ąe1če1ęe1ėe1še1ųe1ūe1ž3gui2ai1ci1di2ei1fi1ji1ki1li1mi2oi1pi1ri2ui1vi1wi1yi1zi2ąi1či1ęi1įi1ši2ųi2ūi3ž1ju1jū3kek4i3ko3ku5ką3lą3lųm2am2one15noo1ao1bo1co1do1eo1fo1go1ho1io1jo1ko1lo1mo1no1po1ro1so1vo1wo1yo1zo1ąo1čo1ęo1ėo1įo1šo1ųo1ūo1žpa3p2ep2i3pop2yp2ėr2ar2ir2or2u3rą5rųs2esu1są35sėt2at2it2o3tęu1bu1cu1du1fu1gu1hu1ju1ku1lu1mu1nu2ou3pu1ru1su1uu1vu1wu1yu1zu1ąu1ču1ęu1įu1šu1ųu1žv2e3vą3vėy1ay1by1cy1dy1ey1fy1gy1hy1iy1jy1ky1ly1my1ny1oy1py3ry1sy1ty1uy1vy1wy1yy1zy1ąy1čy1ęy1ėy1įy1šy1ųy1ūy1žą1aą1bą1cą1dą1eą1fą1gą1hą1ią1ją1ką1lą1mą1ną1oą1pą1rą1są1tą1uą1vą1wą1yą1zą1ąą1čą1ęą1ėą1įą1šą1ųą1ūą1žę1aę1bę1cę1dę1eę1fę1gę1hę1ię1ję1kę1lę1mę1nę1oę1pę1rę1sę1tę1uę1vę1wę1yę1zę1ąę1čę1ęę1ėę1įę1šę1ųę1ūę1žė1aė1bė1cė1dė1eė1fė1gė1hė1iė1jė1kė1mė1nė1oė1pė1rė1uė1vė1wė1yė1zė1ąė1čė1ęė1ėė1įė1šė1ųė1ūė1žį1aį1bį1cį2eį1fį4gį1hį1iį1jį2lį2mį1nį1oį4pį2rį1sį1uį2vį1wį1yį1zį1ąį1čį1ęį1įį1šį1ųį1ūį1žų1aų1bų1cų1dų1eų1fų1gų1hų1ių1jų1kų1lų1mų1nų1oų1pų1rų1sų1tų1uų1vų1wų1yų1zų1ąų1čų1ęų1ėų1įų1šų1ųų1ūų1žū1aū1bū1cū1dū1eū1fū1gū1hū1iū1jū1kū1lū1mū1nū1oū1pū1rū1sū1tū1uū1vū1wū1yū1zū1ąū1čū1ęū1ėū1įū1šū1ųū1ūū1žž1jž2u",
|
||||
4 : "_ap1_at1_nu1_sk4_st4_uk3_už1_įs4a1a2a2chae2l2a1ga4grak2la3lia3lya3lėa3lūap3la3pra4rgasi1a4ska3slato1atp42a1ča1ė2a3šnaš2va1ū2až2lba3c2b1b2b1c4b3dbep42b1f2b1g2b1h2b1k2b1lb2lab2lu2b1m2b1n2b1p2b2rb3ri2b1s2b3tbu4k2b1v2b1w2b1z2b1č2b1š2b1žcar42c1b2c1c2c1d2c1f2c1g3chi2c1k2c1l2c1m2c1n2c1p2c1r2c1s2c1tcuk52c1v2c1w2c1z2c1č2c1š2c1ž2d1b2d1c2d1dde4k2d1f2d1g2d1hdi4pdi4s2d1j2d3k4d3l2d1m2d1n2d1p2d1rdro1d2rė4drų2d1s2d1tdu2adu4k2d1vd3va2d1w2d1č2d1še1a2eat1e1b2ebe1e3bleb3re2che3d2e1ie1eine3kr2e1neno1ens4enu1e3orep4rero1erė2es4ke1u4euž3e3vie1į4eįp3e3šneš2vešė32f1b2f1c2f1d2f1f2f1g2f1h2f1k2f1l2f1m2f1n2f1p2f1rfri12f1s2f1t2f1v2f1w2f1z2f1č2f1š2f1žgaš32g1b2g1c2g1d2g1f2g1g2g1h2g1k2g1lg2leg2lo2g1m2g1n3g2rg3rig4rą5grį4grų2g1s4g1t2g1v2g1w2g1z2g1č2g1š2g1ž2h1b2h1c2h1d2h1f2h1g2h1hhi4b2h1k2h2l2h1mh2me2h1n2h1p2h1r2h1s2h1t2h1v2h1w2h1z2h1č2h1š2h1žia3kiap4i3ari3b2ice1id2rie3gi3ei2i1g2i1hi1i2ik3rilo11imd4i1n5inviok2i3ori3ri4i1si5sai5siis4ki3sli1ė2i3šniš5ti4švišė21išš3ja_2j1b2j1c2j1d2j1f2j1g2j1h2j1j2j1k2j1l2j1m2j1njot32j1p2j1r2j1s2j1t2j1v2j1w2j1z2j1č2j1š2j1ž3ka_kak33kar3kas5kav2k1b2k1c2k1d2k1f2k1g2k1h5ki_5kia3kib3kil5kit2k1k2k1lk2ly4klą4klų2k1m2k1n2k1p2k2rk3rok4ryk5rą2k1sk4skks3l4k1tk3ta4kubku4k2k1vk2vak3vok2vė2k1w3kyt2k1z2k1č2k1škšė32k1ž3la_2l1blb3r2l1c2l1d3le_le3c4leč2l1f2l1g2l1h3li_li4a3lių2l1j2l1klko12l1l2l1m2l1n3lo_log44lop4l1p2l1r4l1sl4sk4l3t3lu_2lup4l1v2l1w3lyč2l1z2l1č3lęs3lėm3lės2lėč3lį44l1š2l1ž3mas2m1bmb3r2m1c2m1dme3c2m1f2m1g2m1h2m1k2m1l2m1m2m1n2mod2m1pm4plm3pr2m1r4m1s2m1tm3ta3muo2m1v2m1w2m1z2m1č2m1š2m1ž2n1b2n1c2n1dneg42n1f4n1gng3lng4r2n1hni4s2n1j2n1knk3r2n1l2n1m2n1n2n1p2n1r4n1sns3l4n1tn3tanua4nu3gnu1inuk22n1v2n1w2n1z4n1č2n1š2n1žo3dro2eto3krono1o1o2o2ręo3slo3t2oto1oš2vpad23panpap4p2arpas22p1b4p1cper12p1f2p1g2p1h3p2lp3lep3lip3lop4lup4ly2p1m4p1npo4g2p1p2p2rp3rip3ry4prąp3rėp3rū4p1spsi13p4u2p1v2p1w2p1z2p1č4p3ž3ra_ra3b3rac3ral3ram3rav2r1brbo12r1c4r1d2reb3rel5res3ret2r1f2r1g2r1h3ri_ri3d3rij2ril3riori3p3rią3rių2riū4r1k4r1l2r1m4r1n3roj3rok3ron3rop5ros2r1p2r1r4r1srs4p4r1t2ruk3rul4run2rup3rus4r1v2r1w2r1z4rąs4r1č4r1š2r1ž2s3b2s1c2s3d2s1f2s1g2s1hsi3d4sk_4ske5ski5sky4ską5skę2s2l3sles3lis3lo2s1m4smę4s3n3s2ps3pe4spn4spu4s1rs3ri2s1s2s1tst2v4stę4stųs2tūsuž42s1vs2ve2s1w2s1z4s3č2s1š2s1ž2tabta5s2tat2tač2t1b2t1c2t1d2teb3temte4o2t1f4t3g2t1h3tin2tip4t3j4t3kt4kl4t3l4t3m2t1n2tow2t3pt4pjtp4r2t1r4tro4trą4trųtsi14t1ttua43tur2t1vt2vo2t1w3tyd2t1z2t1čt2ėm2t3žu1a2u3aiu2bju1e2ug4ru5inui2ru3klu3kru3kvu5kųu3orup4lurk2u3slu3t2uto12utru1ė2uš2vu1ū2u3žluž3v3va_vap4va3t2v1b2v1c2v1d2vep3ves2v1f2v1g2v1h2v1j2v1k2v1l2v1m2v1n2v1p2v1r2v4s2v1t2v1v2v1w2v1z2v1č4vėp2v1š2v1ž2w1b2w1c2w1d2w1f2w1g2w1h2w1k2w1l2w1m2w1n2w1p2w1r2w1s2w1t2w1v2w1w2w1z2w1č2w1š2w1žy4sk2z1b2z1c2z1d2z1f2z1g2z1h2z1k2z1l2z1m2z1n2z1p2z1r2z1s2z1t2z1v2z1w2z1z2z1č2z1š2z1ž2č1b2č1c2č1d2č1f2č1g2č1hčin12č1k2č1l2č1m2č1n2č1p2č1r2č1s2č1t2č1v2č1w2č1z2č1č2č1š2č1ž2ė3lė3me2ė1sės3l2ė3tė4trį1d2į2k4įsi1įs3lįs2mįs2rįst2į2t2į1ė22š1cš1eiše2v2š1f2š1h2š1lš2lu3šly2š1m2š1nš2nešno1šo2r2š1ršsi1šu4š3š1vš2vi2š1w2š1z4š3čšė2j2š1š2š1žūs3lūs3t2ž1cžen12ž3g2ž1hžio32ž1lž2lu4ž1m2ž1n2ž3p2ž1r2ž1sžsi1ž4skžs3t3ž2vž4viž3vo2ž1w2ž1z2ž1čžįs32ž1š2ž1ž",
|
||||
5 : "_api1_ap3r_as3p_ata1_at3r_aš3v_ek3r_i2š3_iši2_sam1_u2š3a4draag3raa5groa5infai4skai4trak2via2kėta5lo1an4skan4trap3eiap3s2ari4sasi5sas3klas2mias2mua5s4na4stua4truat1ė2atū2žau4klau4skau4slaš4trba4slbe3s2besi1be3t2b2liz3b2loda3b4dema1de4prde4spdis5kdo3ridro2bdu5kadu4sldvi3adžio1e2a3leapi1ed3rie4droed3rėeg3raei4skei4slei2š14entae3o2šep4liepra1epri1eri4sesi5seska1e5skoe3s2veįs3keįt3rfi4s5ge4o13g2nų2g1p2grai2g3ran5g3reg4reig3ro_gyva1ia5g4i3aišid3rėi2dėmie3kli3entie4ski3g2lig3rui3k2nin4klio4pli2p1jip3ruis4lii5s4ni4steisto12i3t2jo4tv5ka3dka4klka4pr3katika3z2ke4b33k2lak4lan4kle_k2lel4klo_4klu_k4raukris2k4rov4k3ru5krunk4s3pku4prkš2lyle4gr5li4olpna1l4s3pmeis1mi4glmi4grmin4smi4trna3s2na3t2ncen1n3drėnei2mne4o3neor2nerė3nesi1ne3slne3t2nk3lan3kryns4kun4s3pnst3rnt4pln3trunu3b2nu4o3nuos2nu5s4olen1om4pro2rieori4sor4tros3leos4loo3s2vpai2lpai2mpai2rpa5srp2at24p3d2pe2reper3spe2rėp3ieš2p3k24pliop4liup4lojpoli1p3raip3rašpris2p5ro_p3romp5s4kp3s2v4p3t2pu4skpu4slpu4tr4p3š2ra1imra3krras4lra3smr3b4r4rein4reitre4p5res3lri3krrisi1ri3strk3lyr3k4r3rod2ro4grr3p4rr3t2rr3t2v3ruosru4sk4rutor3š2lr3š2msala1san5tse4krsi3k4si3p4si3s23s2k2s5ka_5sk4r5skubsk3vask3vi4s3lu4s3lū4sme_so4drs2tals2ten4stins2tods2toj4s3tėsu3blsu3d2su3g2suk2lsu3s2susi13s2vyta3krte3t2ti4gr3toje2tolįto3s2tp3lū4triot2riš4t3s44tvėjt3ėmut3ėmęt3ėmė2t3š2u1i2muk2leuo4slup3rour3klu5ro1ur3s2us3laus3leusva1us3veu3š2lu3š2nuži2muž1ė2ygia1y4k3lčeko1ė4k3l2š1b22š3d22š1g4šiuk12š1k2š2lij2š1p42š3s44š3t2š4vydū4k3lū4s3kžant42ž3b22ž3d22ž3f4ži3mu2ž3k2ž4s5l4ž3t2žu3s2",
|
||||
6 : "_arbi1_arti1_dina1_nusi1_pie2č_sida1_su5kr_te3s2_šven1a5grioan3k2lap1a4kap3i2mar1eitat3augat3i2mau4t3rbalta1ei4k3l2eis3tema5s4en3k2lenk4laere3a44g4rioi3antęi3antėie4d3rie4p5rio4g3rira3s2jauna1kavar1keren1kri5stlg3s2t2m3aidmas3kine3s2tneįs3tnt2ruoparsi1p4s3tyrai4tįri2ma_2r3imtrivin12r3orgrs4ko_rti5k4rti3s22s1amžsarka1senat4si3auksi3a2vsi3a2šsi5š2v5s4ken5s4kle3s2tovst2raitaura1ti4k3ltskri1ug5riou2s1alvi4s5kvi4t3r2vydau2š5istžants5",
|
||||
7 : "_kirti1ate5isteist2rapa4r1ė2pe2r3imprau2sipusiau1rau4ka_viesia1šsikap1",
|
||||
8 : "lap4s3to"
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
@ -1,14 +0,0 @@
|
||||
// For questions about the Malayalam hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['ml'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 3,
|
||||
specialChars : unescape("അആഇഈഉഊഋൠഌൡഎഏഐഒഓഔാിീുൂൃെേൈൊോൌൗകഖഗഘങചഛജഝഞടഠഡഢണതഥദധനപഫബഭമയരറലളഴവശഷസഹഃം്ൺൻർൽൾൿ%u200D"),
|
||||
patterns : {
|
||||
2 : "ാ1ി1ീ1ു1ൂ1ൃ1െ1േ1ൈ1ൊ1ോ1ൌ1ൗ11ക1ഖ1ഗ1ഘ1ങ1ച1ഛ1ജ1ഝ1ഞ1ട1ഠ1ഡ1ഢ1ണ1ത1ഥ1ദ1ധ1ന1പ1ഫ1ബ1ഭ1മ1യ1ര1റ1ല1ള1ഴ1വ1ശ1ഷ1സ1ഹ2ൺ2ൻ2ർ2ൽ2ൾ2ൿ",
|
||||
3 : "1അ11ആ11ഇ11ഈ11ഉ11ഊ11ഋ11ൠ11ഌ11ൡ11എ11ഏ11ഐ11ഒ11ഓ11ഔ12ഃ12ം12്2ന്2ര്2ള്2ല്2ക്2ണ്2",
|
||||
4 : unescape("2ന്%u200D2ര്%u200D2ല്%u200D2ള്%u200D2ണ്%u200D2ക്%u200D")
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,14 +0,0 @@
|
||||
// For questions about the Oriya hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['or'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 3,
|
||||
specialChars : unescape("ଆଅଇଈଉଊଋଏଐଔକଗଖଘଙଚଛଜଝଞଟଠଡଢଣତଥଦଧନପଫବଭମଯରଲଵଶଷସହଳିୀାୁୂୃୋୋୈୌୗ୍ଃଂ%u200D"),
|
||||
patterns : {
|
||||
2 : "ଅ1ଆ1ଇ1ଈ1ଉ1ଊ1ଋ1ଏ1ଐ1ଔ1ି1ା1ୀ1ୁ1ୂ1ୃ1େ1ୋ1ୌ1ୗ1୍2ଃ1ଂ11କ1ଖ1ଘ1ଙ1ଚ1ଛ1ଜ1ଝ1ଞ1ଟ1ଠ1ଡ1ଢ1ଣ1ତ1ଥ1ଦ1ଧ1ନ1ପ1ଫ1ବ1ଭ1ମ1ଯ1ର1ଲ1ଵ1ଶ1ଷ1ସ1ହ1ଳ",
|
||||
3 : "1ଗ1",
|
||||
4 : unescape("2ନ୍%u200D2ର୍%u200D2ଲ୍%u200D2ଳ୍%u200D2ଣ୍%u200D")
|
||||
}
|
||||
};
|
||||
@ -1,12 +0,0 @@
|
||||
// For questions about the Panjabi hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['pa'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 1,
|
||||
specialChars : unescape("ਆਅਇਈਉਊਏਐਔਕਗਖਘਙਚਛਜਝਞਟਠਡਢਣਤਥਦਧਨਪਫਬਭਮਯਰਲਵਸ਼ਸਹਲ਼ਿੀਾੁੂੇਾੋੈੌ੍ਃ%u0A02%u200D"),
|
||||
patterns : {
|
||||
2 : unescape("ਅ1ਆ1ਇ1ਈ1ਉ1ਊ1ਏ1ਐ1ਔ1ਿ1ਾ1ੀ1ੁ1ੂ1ੇ1ੋ1ੌ1੍2ਃ1%u0A0211ਕ1ਗ1ਖ1ਘ1ਙ1ਚ1ਛ1ਜ1ਝ1ਞ1ਟ1ਠ1ਡ1ਢ1ਣ1ਤ1ਥ1ਦ1ਧ1ਨ1ਪ1ਫ1ਬ1ਭ1ਮ1ਯ1ਰ1ਲ1ਵ1ਸ਼1ਸ1ਹ1ਲ਼")
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
@ -1,16 +0,0 @@
|
||||
// For questions about the portuguese hyphenation patterns
|
||||
// ask Lailson Bandeira (lailsonbm at gmail dot com)
|
||||
// based on LaTeX patterns in Portuguese, by Pedro J. de Rezende and J.Joao Dias Almeida (http://www.ctan.org/tex-archive/language/hyph-utf8/tex/generic/hyph-utf8/patterns/)
|
||||
Hyphenator.languages['pt'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 4,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 3,
|
||||
specialChars : "áéíóúãõàçâêô",
|
||||
patterns : {
|
||||
2 : "1-",
|
||||
3 : "1ba1be1bi1bo1bu1bá1bâ1bã1bé1bí1bó1bú1bê1bõ1ca1ce1ci1co1cu1cá1câ1cã1cé1cí1có1cú1cê1cõ1ça1çe1çi1ço1çu1çá1çâ1çã1çé1çí1çó1çú1çê1çõ1da1de1di1do1du1dá1dâ1dã1dé1dí1dó1dú1dê1dõ1fa1fe1fi1fo1fu1fá1fâ1fã1fé1fí1fó1fú1fê1fõ1ga1ge1gi1go1gu1gá1gâ1gã1gé1gí1gó1gú1gê1gõ1ja1je1ji1jo1ju1já1jâ1jã1jé1jí1jó1jú1jê1jõ1ka1ke1ki1ko1ku1ká1kâ1kã1ké1kí1kó1kú1kê1kõ1la1le1li1lo1lu1lá1lâ1lã1lé1lí1ló1lú1lê1lõ1ma1me1mi1mo1mu1má1mâ1mã1mé1mí1mó1mú1mê1mõ1na1ne1ni1no1nu1ná1nâ1nã1né1ní1nó1nú1nê1nõ1pa1pe1pi1po1pu1pá1pâ1pã1pé1pí1pó1pú1pê1põ1ra1re1ri1ro1ru1rá1râ1rã1ré1rí1ró1rú1rê1rõ1sa1se1si1so1su1sá1sâ1sã1sé1sí1só1sú1sê1sõ1ta1te1ti1to1tu1tá1tâ1tã1té1tí1tó1tú1tê1tõ1va1ve1vi1vo1vu1vá1vâ1vã1vé1ví1vó1vú1vê1võ1xa1xe1xi1xo1xu1xá1xâ1xã1xé1xí1xó1xú1xê1xõ1za1ze1zi1zo1zu1zá1zâ1zã1zé1zí1zó1zú1zê1zõa3aa3ea3oc3ce3ae3ee3oi3ai3ei3ii3oi3âi3êi3ôo3ao3eo3or3rs3su3au3eu3ou3u",
|
||||
4 : "1b2l1b2r1c2h1c2l1c2r1d2l1d2r1f2l1f2r1g2l1g2r1k2l1k2r1l2h1n2h1p2l1p2r1t2l1t2r1v2l1v2r1w2l1w2r",
|
||||
5 : "1gu4a1gu4e1gu4i1gu4o1qu4a1qu4e1qu4i1qu4o"
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
@ -1,17 +0,0 @@
|
||||
// For questions about the Slovenian hyphenation patterns
|
||||
// ask Mojca Miklavec (mojca dot miklavec dot lists at gmail dot com)
|
||||
Hyphenator.languages['sl'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 2,
|
||||
longestPattern : 6,
|
||||
specialChars : "čšž",
|
||||
patterns : {
|
||||
3 : "_č8_š8_ž81fa1hu1kn1sc1sp1wa1ye1zi1zn1zo1zu1čj1čl2cc2ck2ew2ft2jh2nč2vč8č_8š_8ž_a1aa1ba1ca1da1fa1ga1ha1ia1ja1ka1la1ma1na1oa1pa1sa1ta1va1ča1ša1žb1hb1mb1zb1žbe1bi1bo1d2ed2oe1ae1be1ce1de1ee1fe1ge1he1ie1je1ke1le1me1ne1pe1se1te1ve1ze1če1še1žfe1fu1go1gu1i1ai1bi1ci1di1fi1gi1hi1ii1ji1ki1li1mi1ni1pi1ri1si1ti1ui1vi1xi1zi1ši1žju1ki1ko1le1lo1na1ne1nu1o1ao1bo1co1do1eo1fo1go1ho1io1jo1ko1lo1mo1no1oo1po1so1to1uo1vo1yo1zo1čo1šo1žpe1po1qu2r1fr1rr1žre1ri1ro1si1su1t1ftu1u1bu1cu1du1eu1fu1gu1hu1iu1ju1lu1mu1nu1pu1su1tu1vu1zu1ču1šu1žv1fv1gvz2wo2x1fy1jy1ly1wz1cz1gz1tz1šz1žči1š2č",
|
||||
4 : "_is1_iz1_od1_st41ind1inp1inš1kre1liz1loč1naj1nas1naz1neh1peč1str1usp1viv1z1r1z2a1zlj2b1c2b1d2b1k2b1n2b1s2b1t2b1v2b1č2b1š2c1n2c1t2ch_2d1b2d1c2d1d2d1g2d1h2d1j2d1k2d1p2d1s2d1t2d1v2d1č2d1š2d3m2f1n2f1s2g1d2g1t2h1k2h1n2h1t2h1č2h1š2ine2iss2j1b2j1c2j1d2j1g2j1k2j1l2j1m2j1n2j1p2j1r2j1s2j1t2j1v2j1z2j1č2j1š2jos2jus2juč2k1c2k1d2k1m2k1t2ks_2l1b2l1c2l1d2l1f2l1g2l1h2l1k2l1l2l1m2l1n2l1p2l1s2l1t2l1v2l1z2l1č2l1š2l1ž2lj_2ljk2ljn2ljs2ljč2ljš2m1b2m1c2m1d2m1f2m1k2m1m2m1p2m1s2m1t2m1v2m1č2m1š2m1ž2n1b2n1c2n1f2n1g2n1h2n1k2n1l2n1n2n1p2n1s2n1t2n1v2n1z2n1š2n1ž2nj_2njc2njk2njs2njš2p1c2p1k2p1s2p1t2p1š2r1b2r1c2r1d2r1g2r1h2r1j2r1k2r1l2r1m2r1n2r1p2r1s2r1t2r1v2r1z2r1č2r1š2rae2s1b2s1f2s1j2s1s2sk_2st_2stk2stm2t1b2t1c2t1d2t1k2t1m2t1s2t1t2u1a2v1b2v1c2v1d2v1j2v1k2v1m2v1n2v1p2v1t2vzo2y1f2z1b2z1h2z1j2z1k2z1m2z1p2z1s2z1č2č1b2č1g2č1k2č1n2č1p2č1s2š1j2šč_2ščk2ščn2ž1b2ž1c2ž1j2ž1k2ž1č3ktr3ste4bmi4eth4hl_4igh4ile4ilo4ire4job4jož4ljc4njv4ogl4opy4phs4sc_4stf4tz_4urg4vjo4všk4zri4zru4čop4čup4žmia1e1a1raa1rea1ria1roa1rua1u1a1zea2uka4hma4jfa4mza4nma4pha4sša4tfa4ufa4ula4vžad2laf1tak4sat4ib1jaba4ube4vc1kack1sd1lod2lid4urdis1e1o1e1rae1ree1rie1roe1rue1u1e4dfe4epe4ffe4rfe4rre4wte4ywe4zte4zže4čde4čte4špeb4jed2lei2zez2gez4lh4loha4uhe4ii1e1i1o1i1čai1čei1čii1čui2zri4csi4kči4mhis4aiz1liz1uj1hijra1kok4ks1cks1pks1tl2i1le4en1čan1čen1čin1čun4dmn4ghn4gvn4tgn4tvnz4io1rao1reo1rio1roo1ruo2olo4aso4bzo4cro4kbo4kto4lro4omo4pmoiz2oz2noz2ooz2roz2voz4boz4gr4inr4thrz2ls2cis2kns4ids4onsis1taz4u1kau1keu1kou1rau1reu1riu4bpu4thub4jv1čav1čev1čiv2zav2zuv3zpve4ivt4kz1igz1liz1luz1obz1ogz1v2z2olz3dvz3kuz3vnz4omz4ujše2s",
|
||||
5 : "_av5r_ek3s_ek5v_si4s2d1z22j1od2n3d22p3č22v3zk2z1d22z1is2z1od2z1up2z1uz2z1z23inse3intr3razl3raču3real3rodi3v2pa3v2zg3zbir3zlil3zlog3zlož4d3vi4dind4dnas4dobč4idor4inšk4jime4kst_4ktra4mind4minp4minš4ploz4skre4tind4tinp4tnaj4zrez4zreš4zrež5dlet5obla5obro5oseb5redč5stim5tema5zlit5zliva4ksta4ziga4zoba4zraa5ju_ab5baac5ciad5uraf5gaah5miah5moai2n1aj3osaj3ugaj3učaj5fiaj5foaj5haaj5heaj5imaj5žnan5mian5ziao2b1ar5xaar5xoar5xuas5ščav5šiav5žaay5toaz3laaz3leaz5foaz5vpaž5mib3jemb3lepb3rabb3rašb3rezb3robb4ja_b5jelb5jetb5lilb5litb5livb5ordb5rasbo5vpbu5kibu5kubu5kvbu5ryc5ko_ch5mack1o2ck5weckov3d3repd4revd5litd5livd5nivd5razde4mndi5ckdo5rddo5včdu5rodu5ume2č1ve4zobe5stae5zije5zised5iged5obed5včed5zbef5feef5taeiz5eeo4dleob4jeob4res5daev5haew5leew5toez4moez4reez5djez5glez5izeč3leeč5deeč5dieč5doeč5opeč5tieč5toeč5treč5upeš5poff5mafre4uft5vego5vzh5reni4skvii2n1ik5čaim5hiisis4it5priv5joiz4laiz5meiz5moiz5poič5raič5vrj5aktjod4ljraz4ju2ž1ju5dmk5satk5vipke5tiko5kdks4poks5teku5rola4irle5melg5čalu5kilu5kum5nivm5urnme4drmy5hin4ostnad5rnaj3ond5gand5hine3d2ne3zmnez4vng5hang5vino5rdnsis4nt5gant5gent5viny5quo2d1žo2v1zo5vzaob5glob5jooc5keoc5kiod5dvod5zdoele4ok5baok5beol5reood4lop5meou5kiou5kuov3zdov5škoz5loozd5jož5mipe4ktpet3lph5sopi5zoprez4pč5kar3v2jrav5zre5jore5kmre5čvriz4griz4lriz4nro5zort5haru5klrv5jory5anrž5das4lavs4tens4tirs4tičse5mase5vpsoni5su4bosve5tta5witch5ote5xatrt5uub5pouth5oux5emuše3sv4pijv4pilv4červ5sknv5šekve4člve4čmvi5dvvo5rdz4gniz4venz4vokz5gotz5lasz5lomza1z2za3vpza5ukza5zdzd5juzliz5č5mes",
|
||||
6 : "_ob5it_obi4d_voz5l_voz5n_zliz62d3o2f3z4voj4d3nac4d3nar4d3nož4d5nap4d5nač4d5neb4d5niz4d5obd4j5int4l5izd4t3int4tinos4tinse4z5išč4zredč4č3let5načela4j5eka4z3oča6doblab6rodad6rl_ad6rlaad6robaj6imoaj6stban6dgaan6dhiar6dwaaz4lilaz4litaz4livaz4redaz5oraaz5orob5letab5režeba6bbaban3č4bo6chmbr6ždabre4zgbre4zibre4zrd4i5nodd6vojde4minde4z3idi4skrdi6sprdo5v4zdre6pndteks6e3z4dre4d3oče4dobse4tinše4z5ore5sti_e5stihe5stileb6lized6obeed6obrei6pziek6malek6treeo4z5nep5nikev5stvev6preev6steew6indez5imnez6ijoez6istez6lomez6maneč6vrsfe6ljtfi6zljfo6urige6igege6njčgel5č4gi6tprhu6ffmil5č4kis6ertiz6odeiz6ureizli4zje4ks4jsis6tjz6vesko6všekoz6loks6tazla6vz_le6ipzli6dž_me4d5nme6dosmi6th_mo6vš_mo6št_na4drena4j3una4v3zna6drana6durna6jakna6jočnavze6naz6ornteks4o6drepob5ideod5nalol6gčaor4dečose4m5ov5semoz5nicoz5nišoz6ložpe4tlepe4v5spev5t4po4d3lpo4dnapo6dfapo6lobpo6stdpz6ig_ra6jžnra6vzare6chtre6digre6ibare6sdare6zusre6zverev6skri5n4orob6ids4plods4tra_sek5sisi6gn_sonič4spod4ltek6stto6vž_tr6turud6mi_up6čkave4tinvi6žg_vid6vavoz5lez6ane_",
|
||||
7 : "_di6spo_po4d5n_po4v5s_se4k5s3i4n3os4d5njač6d5elem6tletnoera5z4rera5z4vera6z5leve6t5llju5d6jna4d5njna4j5ennje4v5so6l5avtpo4d5očra4z5idra4z5orre6dnjure6značse4k5savetle6t",
|
||||
8 : "_pre6d7ne4z5u4m5"
|
||||
}
|
||||
};
|
||||
File diff suppressed because one or more lines are too long
@ -1,14 +0,0 @@
|
||||
// For questions about the Tamil hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['ta'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 2,
|
||||
specialChars : "அஆஇஈஉஊஎஏஐஒஓஔாிீுூெேைொோௌகஙசஜஞடணதநபமயரறலளழவஷஸஹ்னஂஃௗ",
|
||||
patterns : {
|
||||
2 : "ா1ி1ீ1ு1ூ1ெ1ே1ை1ொ1ோ1ௌ11க1ங1ச1ஜ1ஞ1ட1ண1த1ந1ப1ம1ய1ர1ற1ல1ள1ழ1வ1ஷ1ஸ1ஹ",
|
||||
3 : "1அ11ஆ11இ11ஈ11உ11ஊ11எ11ஏ11ஐ11ஒ11ஓ11ஔ12ஂ12ஃ12ௗ12்1",
|
||||
4 : "2க்12ங்12ச்12ஞ்12ட்12ண்12த்12ன்12ந்12ப்12ம்12ய்12ர்12ற்12ல்12ள்12ழ்12வ்12ஷ்12ஸ்12ஹ்1"
|
||||
}
|
||||
};
|
||||
@ -1,12 +0,0 @@
|
||||
// For questions about the Telugu hyphenation patterns
|
||||
// ask Santhosh Thottingal (santhosh dot thottingal at gmail dot com)
|
||||
Hyphenator.languages['te'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 1,
|
||||
specialChars : "ఆఅఇఈఉఊఋఎఏఐఒఔకగఖఘఙచఛజఝఞటఠడఢణతథదధనపఫబభమయరలవశషసహళఱిీాుూృెేొాోైౌ్ఃం",
|
||||
patterns : {
|
||||
2 : "అ1ఆ1ఇ1ఈ1ఉ1ఊ1ఋ1ఎ1ఏ1ఐ1ఒ1ఔ1ి1ా1ీ1ు1ూ1ృ1ె1ే1ొ1ో1ౌ1్2ః1ం11క1గ1ఖ1ఘ1ఙ1చ1ఛ1జ1ఝ1ఞ1ట1ఠ1డ1ఢ1ణ1త1థ1ద1ధ1న1ప1ఫ1బ1భ1మ1య1ర1ల1వ1శ1ష1స1హ1ళ1ఱ"
|
||||
}
|
||||
};
|
||||
@ -1,15 +0,0 @@
|
||||
// For questions about the turkish hyphenation patterns ask
|
||||
// Andreas Lappe nd at off-pist dot de
|
||||
Hyphenator.languages['tr'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 5,
|
||||
specialChars : "âıîöüûçğş",
|
||||
patterns : {
|
||||
3 : "2a12â12e12ı12i12î12o12ö12u12ü12û11b11c11ç11d11f11g11ğ11h11j11k11l11m11n11p11r11s11ş11t11v11y11z12bb2bc2bç2bd2bf2bg2bğ2bh2bj2bk2bl2bm2bn2bp2br2bs2bş2bt2bv2by2bz2cb2cc2cç2cd2cf2cg2cğ2ch2cj2ck2cl2cm2cn2cp2cr2cs2cş2ct2cv2cy2cz2çb2çc2çç2çd2çf2çg2çğ2çh2çj2çk2çl2çm2çn2çp2çr2çs2çş2çt2çv2çy2çz2db2dc2dç2dd2df2dg2dğ2dh2dj2dk2dl2dm2dn2dp2dr2ds2dş2dt2dv2dy2dz2fb2fc2fç2fd2ff2fg2fğ2fh2fj2fk2fl2fm2fn2fp2fr2fs2fş2ft2fv2fy2fz2gb2gc2gç2gd2gf2gg2gğ2gh2gj2gk2gl2gm2gn2gp2gr2gs2gş2gt2gv2gy2gz2ğb2ğc2ğç2ğd2ğf2ğg2ğğ2ğh2ğj2ğk2ğl2ğm2ğn2ğp2ğr2ğs2ğş2ğt2ğv2ğy2ğz2hb2hc2hç2hd2hf2hg2hğ2hh2hj2hk2hl2hm2hn2hp2hr2hs2hş2ht2hv2hy2hz2jb2jc2jç2jd2jf2jg2jğ2jh2jj2jk2jl2jm2jn2jp2jr2js2jş2jt2jv2jy2jz2kb2kc2kç2kd2kf2kg2kğ2kh2kj2kk2kl2km2kn2kp2kr2ks2kş2kt2kv2ky2kz2lb2lc2lç2ld2lf2lg2lğ2lh2lj2lk2ll2lm2ln2lp2lr2ls2lş2lt2lv2ly2lz2mb2mc2mç2md2mf2mg2mğ2mh2mj2mk2ml2mm2mn2mp2mr2ms2mş2mt2mv2my2mz2nb2nc2nç2nd2nf2ng2nğ2nh2nj2nk2nl2nm2nn2np2nr2ns2nş2nt2nv2ny2nz2pb2pc2pç2pd2pf2pg2pğ2ph2pj2pk2pl2pm2pn2pp2pr2ps2pş2pt2pv2py2pz2rb2rc2rç2rd2rf2rg2rğ2rh2rj2rk2rl2rm2rn2rp2rr2rs2rş2rt2rv2ry2rz2sb2sc2sç2sd2sf2sg2sğ2sh2sj2sk2sl2sm2sn2sp2sr2ss2sş2st2sv2sy2sz2şb2şc2şç2şd2şf2şg2şğ2şh2şj2şk2şl2şm2şn2şp2şr2şs2şş2şt2şv2şy2şz2tb2tc2tç2td2tf2tg2tğ2th2tj2tk2tl2tm2tn2tp2tr2ts2tş2tt2tv2ty2tz2vb2vc2vç2vd2vf2vg2vğ2vh2vj2vk2vl2vm2vn2vp2vr2vs2vş2vt2vv2vy2vz2yb2yc2yç2yd2yf2yg2yğ2yh2yj2yk2yl2ym2yn2yp2yr2ys2yş2yt2yv2yy2yz2zb2zc2zç2zd2zf2zg2zğ2zh2zj2zk2zl2zm2zn2zp2zr2zs2zş2zt2zv2zy2zz",
|
||||
4 : "a3a2a3â2a3e2a3ı2a3i2a3î2a3o2a3ö2a3u2a3ü2a3û2â3a2â3â2â3e2â3ı2â3i2â3î2â3o2â3ö2â3u2â3ü2â3û2e3a2e3â2e3e2e3ı2e3i2e3î2e3o2e3ö2e3u2e3ü2e3û2ı3a2ı3â2ı3e2ı3ı2ı3i2ı3î2ı3o2ı3ö2ı3u2ı3ü2ı3û2i3a2i3â2i3e2i3ı2i3i2i3î2i3o2i3ö2i3u2i3ü2i3û2î3a2î3â2î3e2î3ı2î3i2î3î2î3o2î3ö2î3u2î3ü2î3û2o3a2o3â2o3e2o3ı2o3i2o3î2o3o2o3ö2o3u2o3ü2o3û2ö3a2ö3â2ö3e2ö3ı2ö3i2ö3î2ö3o2ö3ö2ö3u2ö3ü2ö3û2u3a2u3â2u3e2u3ı2u3i2u3î2u3o2u3ö2u3u2u3ü2u3û2ü3a2ü3â2ü3e2ü3ı2ü3i2ü3î2ü3o2ü3ö2ü3u2ü3ü2ü3û2û3a2û3â2û3e2û3ı2û3i2û3î2û3o2û3ö2û3u2û3ü2û3û2",
|
||||
6 : "tu4r4k",
|
||||
7 : "2e2cek_m1t4rak"
|
||||
}
|
||||
};
|
||||
@ -1,25 +0,0 @@
|
||||
// For questions about the Ukrainian hyphenation patterns
|
||||
// ask Alexey Grekov (athens at ukr dot net)
|
||||
Hyphenator.languages['uk'] = {
|
||||
leftmin : 2,
|
||||
rightmin : 2,
|
||||
shortestPattern : 1,
|
||||
longestPattern : 12,
|
||||
specialChars : "аеіоуюяєїибкпстфхцчшщвгджзлмнрй’'ґь",
|
||||
patterns : {
|
||||
2 : "6’6ь",
|
||||
3 : "2а1а3аа3еа3іа3оа3уа3юа3яа3єа3ї2е1е3ае3ее3іе3ое3уе3юе3яе3єе3ї2и1и3аи3еи3іи3ои3уи3юи3яи3єи3ї2і1і3аі3еі3иі3оі3уі3юі3яі3єі3ї2о1о3ао3ео3іо3оо3уо3юо3яо3єо3ї2у1у3ау3еу3іу3оу3уу3юу3яу3єу3ї2ю1ю3аю3ею3ію3ою3ую3юю3яю3єю3ї2я1я3ая3ея3оя3уя3юя3яя3єя3ї2є1є3ує3ює3єє3ї2ї1ї3еї3ої3юд4жд4за2йе2йи2йі2йо2йу2йю2йя2йє2йї2йь6о",
|
||||
4 : "2б1к2б1п2б1с2б1т2б1ф2б1х2б1ц2б1ч2б1ш2б1щ2в1б2в1г2в1д2в1ж2в1з2в1к2в1л2в1м2в1н2в1п2в1р2в1с2в1т2в1ф2в1х2в1ц2в1ч2в1ш2в1щ2в1й2в’32г1к2г1п2г1с2г1т2г1ф2г1ц2г1ч2г1ш2д1к2д1п2д1с2д1т2д1ф2д1х2д1ц2д1ч2д1ш2д1щ2ж1к2ж1п2ж1с2ж1т2ж1ф2ж1х2ж1ц2ж1ч2ж1ш2з1к2з1п2з1с2з1т2з1ф2з1х2з1ц2з1ч2з1ш2з1щ2к1б2к1г2к1д2к1з2л1б2л1в2л1г2л1ґ2л1д2л1ж2л1з2л1к2л1м2л1н2л1п2л1р2л1с2л1т2л1ф2л1х2л1ц2л1ч2м1б2м1в2м1г2м1д2м1ж2м1з2м1к2м1л2м1н2м1п2м1р2м1с2м1т2м1ф2м1х2м1ц2м1ч2м1ш2м1щ2м’32н1б2н1в2н1г2н1д2н1ж2н1з2н1к2н1л2н1м2н1п2н1р2н1с2н1т2н1ф2н1х2н1ц2н1ч2н1ш2н1щ2н’32п1б2п1д2п1з2р1б2р1в2р1г2р1ґ2р1д2р1ж2р1з2р1к2р1л2р1м2р1н2р1п2р1с2р1т2р1ф2р1х2р1ц2р1ч2р1ш2р1щ2р1й2р’32с1б2с1г2с1д2т1б2т1г2т1д2т1ж2т1з2ф1б2ф1г2ф1з2х1г2х1д2ц1б2ц1г2ц1д2ц1з2ч1б2ч1д2ч1ж2ш1б2ш1г2й1б2й1в2й1г2й1д2й1ж2й1з2й1к2й1л2й1м2й1н2й1п2й1р2й1с2й1т2й1ф2й1х2й1ц2й1ч2й1ш2й1щ2б1б2в1в2г1г2ґ1ґ2д1д2ж1ж2з1з2к1к2л1л2м1м2н1н2п1п2р1р2с1с2т1т2ф1ф2х1х2ц1ц2ч1ч2ш1ш2щ1щ2й1й3ння3ття3ттю3лля3ллє3ллю3ддя3й6о_б’8_в’8_д’8_з’8_м’8_н’8_п’8_р’8_т’8_ф’8_ш’8_бд6_бр6_вб6_вг6_вд6_вж6_вз6_вк6_вл6_вм6_вп6_вс6_вт6_дж6_дз6_дл6_дс6_зб6_зг6_зд6_зл6_зс6_зч6_зш6_зґ6_йш6_кл6_кп6_кс6_кх6_кш6_лс6_ль6_мс6_мф6_нб6_пр6_пс6_пх6_рт6_ск6_сл6_сп6_ст6_сх6_тк6_тр6_тх6_ть6_фл6_хл6_ць6_чх6_шк6_шл6_шп6_шт66бв_6бз_6бй_6бл_6бн_6бр_6бс_6вб_6вв_6вд_6вж_6вз_6вй_6вк_6вл_6вм_6вн_6вп_6вр_6вс_6вт_6вх_6вч_6вш_6вщ_6гв_6гг_6гд_6гл_6гм_6гн_6гр_6гс_6гт_6дж_6дз_6дл_6дм_6дн_6др_6дт_6дь_6жб_6жв_6зв_6зг_6зд_6зк_6зл_6зм_6зн_6зр_6зь_6йб_6йв_6йг_6йд_6йз_6йк_6йл_6йм_6йн_6йп_6йр_6йс_6йт_6йф_6йх_6йц_6йч_6йш_6кв_6кк_6кл_6кр_6кс_6кт_6кх_6кш_6лб_6лг_6лд_6лк_6лл_6лм_6лн_6лп_6лс_6лт_6ль_6мб_6мг_6мж_6мк_6мл_6мм_6мн_6мп_6мр_6мс_6мт_6мф_6мх_6мш_6нв_6нг_6нд_6нж_6нз_6нк_6нм_6нн_6нр_6нс_6нт_6нф_6нх_6нц_6нч_6нш_6нь_6пд_6пл_6пр_6пс_6пт_6пф_6пц_6рб_6рв_6рг_6рд_6рж_6рз_6рк_6рл_6рм_6рн_6рп_6рр_6рс_6рт_6рф_6рх_6рц_6рч_6рш_6рщ_6рь_6ск_6сл_6см_6сн_6сп_6сс_6ст_6сь_6тв_6тл_6тм_6тр_6тс_6тт_6тц_6тч_6ть_6фм_6фр_6фт_6фф_6фь_6хв_6хм_6хн_6хр_6хт_6хш_6ць_6чб_6чм_6чн_6чт_6шв_6шм_6шн_6шт_виї4оо4боб’3од’3’ї4в’ї4з’ї4д’ї4ж’ї4л’ї4м’ї4с’ї4хге4ооо4куя4вді4омі4оі4онзо6ооу4с",
|
||||
5 : "2дь1к2дь1с2дь1т2дь1ц2зь1к2зь1с2зь1т2ль1б2ль1в2ль1г2ль1д2ль1ж2ль1з2ль1к2ль1м2ль1н2ль1п2ль1р2ль1с2ль1т2ль1ф2ль1х2ль1ц2ль1ч2ль1ш2ль1щ2ль1й2нь1б2нь1г2нь1з2нь1к2нь1л2нь1м2нь1с2нь1т2нь1х2нь1ц2нь1ч2нь1ш2нь1й2рь1к2рь1ц2сь1б2сь1д2ть1б2к1сп2к1ст2п1сп2п1ст2с1пк2с1пп2с1пс2с1пт2с1пх2с1пч2с1тк2с1тп2с1тс2с1тт2с1тф2с1тц2с1шт2т1ск2т1сп2т1ст2т1шк2ф1сп2ф1ст2ф1шт2х1ст2ц1ст2ц1шк2ш1тк3п4ре3п4риприї43п4ро3п4ріооб’3ооб3мнао4рнеу4к3блаж3ближ3близ3блок3бран3бруд3глад3глиб3глин3глоб3глуз3глуш3гляд3глян3гнан3гнил3гноз3грав3град3грай3грам3гран3граф3граш3граю3грає3грес3гроб3грож3гроз3груп3грів3гріт3гріш3д4ан3двиг3двою3двоє3двій3двір3драж3дром3друж3друк3дряп3дріб3жвав3зваж3зван3звед3звел3звич3звищ3звук3звуч3звіт3змін3зйом3зміш3знав3знай3знак3знал3знан3знат3знач3знаю3знає3зниж3знім3зрюв3зрів3зріл3зрін3й4ма3с4пі3х4то3ї4зд3ї4ставі4абі4о3дої4ддої4мдої4хдої4жзаї4дзаї4жзаї4ззаї4лзаї4мзаї4хзо4казо4кезо4кизо4кузо4кіий4тиій4тинаї4жнаї4знаї4лнаї4мнаї4снаї4хпоя4в_пої4пої4дпрої4сеї4ду4к4рвия4вз’я4взая4вная4веті4одея4као4хаео4ханія4кдоу4кдоу4мнею4ннея4кое4копоя4соа4ктеа4ктий4няпій4мвий4мзай4моа4на",
|
||||
6 : "2к1ськ2п1ськ2с1ськ2с1тсь2сь1кк2сь1кс2сь1кт2т1ськ2ф1ськ2х1ськ2ш1тсь_вб6’6_вв6’6_вз6д6_вм6’6_вп6’6_вп6х6_вс6т6_вш6к6_зв6’6_зд6з6_зм6’6_зс6к6_зс6т6_зш6к6_лк6с6_ск6л6_сп6’6_сп6л6_сп6х6_сх6л66б6ль_6б6ст_6б6ць_6в6др_6в6дь_6в6зь_6в6ль_6в6сь_6в6ць_6г6ль_6г6сь_6д6зь_6ж6дь_6ж6сь_6з6дв_6з6дн_6з6дь_6з6нь_6з6сь_6з6ьб_6з6ьк_6й6кл_6й6ль_6й6мс_6й6нс_6й6ст_6й6сь_6й6тс_6к6ль_6к6ст_6к6сь_6к6тр_6л6ль_6л6мс_6л6хв_6л6ьб_6л6ьв_6л6ьг_6л6ьд_6л6ьз_6л6ьк_6л6ьм_6л6ьн_6л6ьп_6л6ьс_6л6ьт_6л6ьф_6л6ьх_6л6ьц_6л6ьч_6л6ьш_6л6ьщ_6м6бр_6м6ль_6м6сь_6н6гл_6н6гр_6н6гс_6н6дж_6н6дз_6н6дп_6н6др_6н6кс_6н6кт_6н6ск_6н6ст_6н6тк_6н6тр_6н6ть_6н6ць_6н6ьб_6н6ьг_6н6ьк_6п6сь_6п6тр_6р6дв_6р6дж_6р6дь_6р6зн_6р6зь_6р6кс_6р6кт_6р6ль_6р6нс_6р6нь_6р6ср_6р6ст_6р6сь_6р6тв_6р6тр_6р6ть_6р6ць_6с6дп_6с6ль_6с6тв_6с6тй_6с6тм_6с6тр_6с6ть_6с6ць_6с6ьб_6с6ьк_6с6ьм_6т6вт_6т6зт_6т6ль_6т6мр_6ф6ть_6ц6тв_6ц6ьк_6ш6ль_6ш6нл_6ш6сь_6ш6тв_6щ6сь__бе4з3_безу4віду4ч_ві4д3_від’3_мі4ж3ові4д3_пере3_під’3_пі4д3_пі4в3_ро4з3ооб3рона4д’3за5о4рдо5о4рпо5о4рз3в’4яза3ю4шу3в’4яз3м’4яу3м’4яв3м’4язу4рочприо4р3й4ш4л3блиск3блоці3брати3брест3бризк3в4бив3в4дал3в4лад3в4лов3в4сюд3в4тіл3гнучк3грати3грець3грунт3д4бав3д4бал3д4бан3д4бат3д4бає3двічі3дріма3жміть3жріть3з4був3з4бут3звест3звись3з4год3з4дат3з4чеп3й4мищ3й4му_3й4шов3м4нож3м4щен3п4сов3п4сон3п4сув3р4вав3с4кид3с4кок3с4коп3с4кор3с4коч3с4пад3с4пин3с4піш3с4тав3с4тад3с4таз3с4тал3с4тан3с4тар3с4тат3с4тач3с4тає3с4теп3с4тиг3с4тиж3с4той3с4тою3с4туп3с4тяг3с4тіб3с4тій3с4тір3с4фер3с4хил3с4хов3с4хід3т4кан3ш4код3ш4кол3ш4кіл3ш4кір3ш4таб3ш4туч3ґрунт3е4тап3о4бід3о4біц3о4дяг3о4соб3о4хоч3о4чищ3у4ваг3у4важ3у4гав3у4мит3у4міл3у4ряд3я4зик3я4кіс3я4рус3є4д3н3є4дин3є4рей3ї4ждж3ї4хав3ї4хат_заї4к_заї4ц_заї4ч_наї4давої4дае4тилахої4дауді4обе5конб’4єтьбран4дви3й4дви3й4т3в’4яз4д7земді3й4тді3й4д_дої4в_дої4лдої4стеу4стрео4свіек2с1кек2с1пек2с1тек2с1цигої4діе4тилйо4свіквої4д3м’4ятна3з4внаї4вснаї4вшна4й3ана4й3енедої4неї4стоної4доо4палео4палонаї4доо4свіоу4строа4томпоч4непоч4нипоч4нупої4здраді4оз’4єднрмої4дсор4тнцук3роубої4дясої4дви3у4чза3у4чна3у4чне3у4чгелі4ополі4осоці4офізі4охімі4огоме4оао4пікка5налоі4золмете4оабия4квия4сннея4снпоя4сннеа4биео4ціноо4цінео4бурео4зорпіво4спале4оао4хотео4хотео4щадао4щадоо4чищоо4бігоу4суноу4комз3а4ктеу4богзай4нянай4няприй4мдій4манай4маобой4мпрой4мобій4моу4годау4годеу4годео4писоо4писао4пис_ом4рі_ум4ри_ум4рі_ум4ру_ум4ревиу4ди",
|
||||
7 : "_бе4з’3_ві5д4а_ві5д4іневі4д3_пі5д4о_пі5д4і_пі5д4е_пі5д4и_пі5д4у_спі4в3_ро5з4і_ро5з4е_ро5з4а_ро4з’3до3в’4єза3в’4єзі3в’4єпо3в’4єуі3в’4єпо3в’4яза3в’4язі3в’4яна3в’4яоб3в’4язі3м’4яно3м’4яза3м’4яна3м’4яоб3м’4япо3м’4ясу3м’4ядо3в’4юза3в’4юзі3в’4юна3в’4юпо3в’4юуі3в’4юза3я4локоу4рочпоу4роч3м4к4не3м4к4ну3м4к4ні3с4к4ле3с4к4ло3британ3в4довз3в4ласн3в4лашт3в4певн3громад3груван3г4ідро3з4бага3зворуш3з4довж3знаход3зрозум3й4менн3й4муть3й4міть3м4ріть3р4вати3р4віть3с4кіль3с4кіпл3с4пект3с4перм3с4піть3с4тайн3с4тара3с4тисл3с4титу3с4товб3с4тосо3с4тосу3с4тоян3с4тіль3ш4кідл3а4гент3а4грес3а4зарт3а4ктив3а4куст3а4кциз3а4птеч3а4соці3а4тлет3а4халі3е4моці3е4мігр3е4нерг3е4стет3о4бира3о4даль3о4збро3о4крем3о4плат3о4птим3о4пуст3о4пуше3о4пуще3о4ренд3о4сяжн3о4холо3о4чисн3у4згод3у4клад3у4рбан3у4спіш3у4твор3я4дерн3є4писк3і4снув_бе5зе_бйор4нсвер4х3нвід7знаві5д4енві5д4омво4с5ко_дої5ль3з’4ясозна3й4дзна3й4ткорої4д3м’4якшна3в4чанео4палобі3й4добі3й4тпереї4дпереї4жпереї4зпереї4лпереї4спереї4хпре4й4спо3д4вопри3й4тпро4ф3спор4т3нпри3й4дроз5винроз5витро5з4умспе4цпрспе4ц3ссь4квугтран4с3під3у4чво4єводво4єначді4алогді4огенпроя4снрозо4рарозо4рерозо4рннапоу4мне4олітне4ологне4онацне4офітнея4рок_пе4ом_д3у4сімроз’я4рте4ологте4ософа3у4даро3у4дарз3у4дарв3у4дареі4стотоі4стотоо4чистнайа4ктпіва4ктао4бразео4бразоо4бразиа4варіяа4варіоа4варіеа4варіаа4дресеа4дресоа4дресіа4дресае4фектее4фектое4фектое4місіие4місіяе4місіее4місій3у4богздій4няобій4няд4о3й4мперей4мбезу4глоа4каціоо4держбіблі4о_на3в4ч_ви3в4ч_до3в4ч_за3в4ч_по3в4чана3в4чена3в4чови3в4чеви3в4чедо3в4чоза3в4чпо3в4чае3м4рій_ви3м4р_за3м4р_зі3м4р_на3м4р_по3м4рие4стетое4стетее4стетоо4ктаніо4ктано3в4казе3в4каз",
|
||||
8 : "6б6с6тв_6б6с6тр_6б6с6ьк_6в6с6тв_6в6с6ть_6в6с6ьк_6г6с6тв_6д6с6тв_6д6с6ьк_6д6ь6сь_6й6с6тв_6й6с6тр_6й6с6ьк_6л6ь6дс_6л6ь6сь_6л6ь6тр_6м6б6ль_6м6с6тв_6м6с6ьк_6н6г6ль_6н6с6тв_6н6с6тр_6н6с6ьк_6н6ь6сь_6п6с6тв_6р6л6ьз_6р6н6ст_6р6с6тв_6р6с6ть_6р6с6ьк_6р6щ6сь_6с6д6рп_6с6т6рь_6т6с6тв_6т6с6ьк_6т6ь6сь_6ф6с6тв__ві5д4ом_ві5д4ун_ві5д4ербезві4д3неві4д’3_пона4д3_напі4в3ро5з4йом_чере4з3пере5о4рпі6д5о4робі3в’4євід3в’4япри3в’4япід3в’4япри3м’4янаду4рочприу4роч3в4б4лаг3в4к4лад3в4п4лив3в4т4рут3в4т4руч3з4б4рой3з4б4рою3з4б4роє3з4в4’яз3п4с4ков3с4к4лад3с4к4лит3с4п4лав3с4п4лат3с4п4лач3с4п4рав3с4т4вор3с4т4рах3с4т4риб3с4т4риж3с4т4рой3с4т4рок3с4т4ром3с4т4роф3с4т4роч3с4т4рою3с4т4роя3с4т4роє3с4т4рої3с4т4рій3с4т4ріл3с4т4річ3т4к4нен3т4ь4мар3у4п4рав3в4веден3в4довол3в4живан3в4поряд3в4рожай3з4доров3з4дійсн3с4короч3с4повід3с4пожив3с4табіл3с4тереж3с4теріг3с4торон3с4торін3а4дитив3а4ктуал3а4курат3а4кцепт3а4лергі3а4матор3а4наліз3а4натом3а4парат3а4пеляц3а4ромат3а4спект3е4колог3е4коном3е4лектр3о4б’єдн3о4б’єкт3о4береж3о4борон3о4перат3о4хорон3у4компл3у4крупн3у4перед3у4рядов3у4стпіш3у4тробн3я4скрав3і4зотоп3і4люстр3і4мовір3і4нтенс3і4нформальбі5онбей4сболбо4г3данбо4є3голбо4є3готбо4є3запбори4с5пвина3й4двина3й4тві5д4е4оджен4тльди4с3локди4с3пледи4с3путди4с3тилд4ні3п4рдо3з4волдо3з4вілкон4трремо4к5рийна3б4лизна3в4рядна4д7з4вна3в4ченне3в4томне3д4банна3д4банне3з4вичне3з4важна5п4ливні4т5ратоб5у4мовпере3й4дпере3й4тпі5в4еньпо3в4торпо3в4ченпо3д4робпо3д4разпо5з4бавпри4нципрай3в4нороз5вантро4з5ділро4з5горро4з5верро4з5чепро4з3ливсан4к4т3серцеї4дстат5упрукр3а4втукр3а4грукр3е4кснедо3у4чпед3у4чипере3у4чсамо3у4чсво4єчассво4єрідоо4динокміжу4собнай3я4снроз’я4снро5з4ориро5з4ороро5з4оруро5з4оряро5з4орюро5з4орірозо4решео4голошбальне4оне4окласпі5в4оніп4о5берео3о4кисли3о4кисле3о4кислх3о4кисли3і4сторо3і4сторі3і4стора3і4сторя3і4сторе3і4сторар4т3мінар4т3підар4т3ринар4т3хімперей4няпідій4нябезу4пин_при3в4чмона3в4чжона3в4чіона3в4ч_зав3м4р_при3м4р_роз3м4рй3е4стет",
|
||||
9 : "6л6ь6ств_6л6ь6ськ_6н6с6ькй_6н6т6ств__бе5з4о3д_безві4д3_ві5д4озвді4єві4д3за4вві4д3співві4д3_пере4д3г_пере4д3д_пере4д3м_пере4д3р_пере4д3ч_пере4д’3_пона5д4і_пона5д4и_пона5д4я_чере4з’3непо3в’4япере3м’4япіді3м’4япозау4роч3в4п4равн3с4к4рипт3с4п4ритн3с4п4рият3с4п4ромо3с4т4ражд3с4т4рукт3с4т4рукц3т4ь4мяні3в4разлив3з4баланс3й4мовірн3с4постер3а4вторит3а4декват3а4постол3а4ргумен3е4легант3е4лемент3е4стакад3о4рдинац3у4люблен3у4разлив3у4рочист3у4станов3у4сувати3і4ніціатай4с3бергбактері4оба4с3енербез5і4менбо4є3здатбо4є3компбо4є3постбо4є3прип4в3антрацге2ть3мандер4ж5виддер4ж5думдер4ж5комдер4ж3бездер4ж5стрдисбалансди4с3гармди4с3квалди4с3комфди4с3контди4с3кредди4с3кретди4с3крецди4с3кримди4с3кусіди4с3кутуди4с3персди4с3петчди4с3плейди4с3позиди4с3пропди4с3трибди4с3трофєв4р3атомєпі4с5копєпи4с5копза4п3часті4л3е4тилкиї4венермі4н5е4кона4й3маслна4й3сприна4й3якісна3в4чітьобі3д4раноб4лдер4жперег4нійпере4д5смпід5о4динпо3б4лизупо3в4чітьпо5ж4нітьпос4т3каппос4т3компос4т3натпос4т3соцпор4т3ретпор4т3фелпро4ект3нпро3б4лемпро4м3майпр4о5платро4з5д4вороз5у4ченроз5і4менро4з’5єднро4з3громспе4ц3курспе4ц3мон3с4проможтур4к3менро5з4ора_ро5з4орахне4омальтне4окомунне4оландшне4оліберно4к3а4утте4одолітпів3о4валнаді4сторар4т3афішар4т3кафеар4т3майсар4т3мейсар4т3фактнаді4стотнайі4стотау4т3еколбеза4варібезе4місіо3а4налізц3а4налізз3а4налізм3а4налізпів3у4годроз3у4год_віді3м4р_пере3м4рво4станнєоо4плачувео4плачув",
|
||||
10 : "_без5о4соб_без3ро4з3те4х3ві4д3_пере4д3св_пере4д3фрбе4з5і4дейінтер3в’4юна4й3у4бог3в4р4одливба4с3антравід5о4бражвід5о4бразводо5с4токводо5з4бірго4с4п5роздер4ж5а4дмдер4ж5бюдждер4ж5нафтдер4ж5реєсдер4ж5служдвох4а5томди4с3паритди4с3функцкон4тр3аргмі4н5е4нерна4й7о4берна4й7о4гидна4й7о4голна4й7о4пукна4й7о4хайпере5п4ливпере3в4томпів5о4с4трпос4т3процпос4т3фіксспор4т3вирспор4т3залспор4т3комспор4т3майтор4г3предсво4єкорисро5з4о5рамро6з5о4ри_ень7о4кислнай3і4сторпів3і4сторар4т3взводар4т3медіаар4т3о4динар4т3о4збрар4т3центргіпер3а4ктнай3о4бразар4т3мейстго4ф3мейстдо4к3мейстхо4р3мейстміж3а4варінад3а4варібез3а4дреснай3е4фектбло4к3пост_блі4ц3ана_блі4ц3турнт3а4налізре3а4налізбо4р4т3мехбо4р4т3пробо4р4т3радпан3е4стетпар3е4стет",
|
||||
11 : "про4ф3ві4д3спе4ц3ві4д3_пере4д3бач_пере4д3виб_пере4д3ост_пере4д3пла_пере4д3пок_пере4д3усібрі4дж3портволь4т3метргі4д5ро5метдер4ж5а4томдер4ж5замовзе4кономитиказа4х3станквар4т3платжко4м5а4томкому4ненергна4й3обережна4й7о4грядоб4л3а4дмінперед5о4бідперед5у4мовпо4с4т5комупо4с4т3декрпо4с4т3радіпо4с4т5соціпро3с4тирадполі4т5еконро4з5міннийруко5с4тискспор4т3клубспор4т4с3мечорно3б4ривхво4є3г4ризпа4н3о4тецьконтр3у4дарпост3і4сторар4т3десантар4т3о4бстрар4т3у4станграф3о4бразгро4с3мейсткра4н3мейстшта4л3мейстєге4р3мейстпост3а4варі_блі4ц3криг_блі4ц3опит_блі4ц3торгбак3а4налізген3а4налізміж3а4налізгос4п3у4годбо4р4т3і4нжнай3о4станнперед3о4пла",
|
||||
12 : "_пере4д3умовволь4т3ампердер4ж3резервдорого5в4казінфор4м3агенпо4с4т5радянпо4с4тприватукр3і4н4банкперед3і4сторсупер3о4бразбаге4р3мейстбале4т3мейстбран4д3мейстполі4ц3мейстпо4ш4т3мейстшапі4т3мейстнапів3а4варіперед3а4варісупер3а4варісупер3е4фектгіпер3е4місіполі3а4налізбо4р4т3о4пер",
|
||||
13 : "по4с4т3контрацен4т4р3енергва4ль4д3мействе4ль4т3мейстдекре4т3мейсткапе4ль3мейст_блі4ц3і4спитперед3о4станн",
|
||||
14 : "енерго3з4береженерго3з4берігкварти4р3мейстфо4р4с4т3мейст",
|
||||
15 : "по4с4т3менопаузконце4р4т3мейст"
|
||||
}
|
||||
};
|
||||
@ -18,6 +18,7 @@ function do_hyphenation(lang) {
|
||||
window.py_bridge.debug(e);
|
||||
}
|
||||
});
|
||||
// console.log(lang);
|
||||
Hyphenator.hyphenate(document.body, lang);
|
||||
}
|
||||
|
||||
|
||||
@ -29,7 +29,8 @@ def login_to_google(username, password):
|
||||
if b'<title>Account overview - Account Settings</title>' not in raw:
|
||||
raise ValueError(('Failed to login to google with credentials: %s %s'
|
||||
'\nGoogle sometimes requires verification when logging in from a '
|
||||
'new IP address. Use lynx to login and supply the verification.')
|
||||
'new IP address. Use lynx to login and supply the verification, '
|
||||
'at: lynx -accept_all_cookies https://accounts.google.com/ServiceLogin?service=code')
|
||||
%(username, password))
|
||||
return br
|
||||
|
||||
|
||||
@ -11,14 +11,14 @@ msgstr ""
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2012-01-01 11:27+0000\n"
|
||||
"PO-Revision-Date: 2012-01-07 00:56+0000\n"
|
||||
"Last-Translator: Kenan Dervišević <kenan3008@gmail.com>\n"
|
||||
"Language-Team: Bosanski <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: 2012-01-02 05:00+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-08 05:02+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -26655,7 +26655,7 @@ msgstr "ukva"
|
||||
|
||||
#. name for ukr
|
||||
msgid "Ukrainian"
|
||||
msgstr "ukrainski"
|
||||
msgstr "ukrajinski"
|
||||
|
||||
#. name for uks
|
||||
msgid "Urubú-Kaapor Sign Language"
|
||||
|
||||
@ -18,19 +18,19 @@ msgstr ""
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:28+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"PO-Revision-Date: 2012-01-08 20:03+0000\n"
|
||||
"Last-Translator: Simeon <Unknown>\n"
|
||||
"Language-Team: German <debian-l10n-german@lists.debian.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-11-26 05:15+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-09 04:49+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
"Language: de\n"
|
||||
|
||||
#. name for aaa
|
||||
msgid "Ghotuo"
|
||||
msgstr "Ghotuo"
|
||||
msgstr ""
|
||||
|
||||
#. name for aab
|
||||
msgid "Alumu-Tesu"
|
||||
@ -38,11 +38,11 @@ msgstr "Alumu-Tesu"
|
||||
|
||||
#. name for aac
|
||||
msgid "Ari"
|
||||
msgstr ""
|
||||
msgstr "Ari"
|
||||
|
||||
#. name for aad
|
||||
msgid "Amal"
|
||||
msgstr ""
|
||||
msgstr "Amal"
|
||||
|
||||
#. name for aae
|
||||
msgid "Albanian; Arbëreshë"
|
||||
@ -50,11 +50,11 @@ msgstr ""
|
||||
|
||||
#. name for aaf
|
||||
msgid "Aranadan"
|
||||
msgstr ""
|
||||
msgstr "Aranadan"
|
||||
|
||||
#. name for aag
|
||||
msgid "Ambrak"
|
||||
msgstr ""
|
||||
msgstr "Ambrak"
|
||||
|
||||
#. name for aah
|
||||
msgid "Arapesh; Abu'"
|
||||
@ -62,23 +62,23 @@ msgstr ""
|
||||
|
||||
#. name for aai
|
||||
msgid "Arifama-Miniafia"
|
||||
msgstr ""
|
||||
msgstr "Arifama-Miniafia"
|
||||
|
||||
#. name for aak
|
||||
msgid "Ankave"
|
||||
msgstr ""
|
||||
msgstr "Ankave"
|
||||
|
||||
#. name for aal
|
||||
msgid "Afade"
|
||||
msgstr ""
|
||||
msgstr "Afade"
|
||||
|
||||
#. name for aam
|
||||
msgid "Aramanik"
|
||||
msgstr ""
|
||||
msgstr "Aramanisch"
|
||||
|
||||
#. name for aan
|
||||
msgid "Anambé"
|
||||
msgstr ""
|
||||
msgstr "Anambé"
|
||||
|
||||
#. name for aao
|
||||
msgid "Arabic; Algerian Saharan"
|
||||
@ -6167,7 +6167,7 @@ msgstr ""
|
||||
|
||||
#. name for deu
|
||||
msgid "German"
|
||||
msgstr "Deutsch"
|
||||
msgstr ""
|
||||
|
||||
#. name for dev
|
||||
msgid "Domung"
|
||||
@ -17982,7 +17982,7 @@ msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
msgstr "Plattdeutsch"
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
@ -20436,7 +20436,7 @@ msgstr ""
|
||||
|
||||
#. name for pdc
|
||||
msgid "German; Pennsylvania"
|
||||
msgstr ""
|
||||
msgstr "Pennsylvaniadeutsch"
|
||||
|
||||
#. name for pdi
|
||||
msgid "Pa Di"
|
||||
|
||||
@ -8,14 +8,14 @@ msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-12-30 14:30+0000\n"
|
||||
"PO-Revision-Date: 2012-01-07 09:51+0000\n"
|
||||
"Last-Translator: Vibhav Pant <vibhavp@gmail.com>\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-12-31 05:54+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-08 05:02+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#. name for aaa
|
||||
msgid "Ghotuo"
|
||||
@ -1563,63 +1563,63 @@ msgstr "Asuri"
|
||||
|
||||
#. name for ass
|
||||
msgid "Ipulo"
|
||||
msgstr ""
|
||||
msgstr "Ipulo"
|
||||
|
||||
#. name for ast
|
||||
msgid "Asturian"
|
||||
msgstr ""
|
||||
msgstr "Asturian"
|
||||
|
||||
#. name for asu
|
||||
msgid "Asurini; Tocantins"
|
||||
msgstr ""
|
||||
msgstr "Asurini; Tocantins"
|
||||
|
||||
#. name for asv
|
||||
msgid "Asoa"
|
||||
msgstr ""
|
||||
msgstr "Asoa"
|
||||
|
||||
#. name for asw
|
||||
msgid "Australian Aborigines Sign Language"
|
||||
msgstr ""
|
||||
msgstr "Australian Aborigines Sign Language"
|
||||
|
||||
#. name for asx
|
||||
msgid "Muratayak"
|
||||
msgstr ""
|
||||
msgstr "Muratayak"
|
||||
|
||||
#. name for asy
|
||||
msgid "Asmat; Yaosakor"
|
||||
msgstr ""
|
||||
msgstr "Asmat; Yaosakor"
|
||||
|
||||
#. name for asz
|
||||
msgid "As"
|
||||
msgstr ""
|
||||
msgstr "As"
|
||||
|
||||
#. name for ata
|
||||
msgid "Pele-Ata"
|
||||
msgstr ""
|
||||
msgstr "Pele-Ata"
|
||||
|
||||
#. name for atb
|
||||
msgid "Zaiwa"
|
||||
msgstr ""
|
||||
msgstr "Zaiwa"
|
||||
|
||||
#. name for atc
|
||||
msgid "Atsahuaca"
|
||||
msgstr ""
|
||||
msgstr "Atsahuaca"
|
||||
|
||||
#. name for atd
|
||||
msgid "Manobo; Ata"
|
||||
msgstr ""
|
||||
msgstr "Manobo; Ata"
|
||||
|
||||
#. name for ate
|
||||
msgid "Atemble"
|
||||
msgstr ""
|
||||
msgstr "Atemble"
|
||||
|
||||
#. name for atg
|
||||
msgid "Ivbie North-Okpela-Arhe"
|
||||
msgstr ""
|
||||
msgstr "Ivbie North-Okpela-Arhe"
|
||||
|
||||
#. name for ati
|
||||
msgid "Attié"
|
||||
msgstr ""
|
||||
msgstr "Attié"
|
||||
|
||||
#. name for atj
|
||||
msgid "Atikamekw"
|
||||
@ -1627,115 +1627,115 @@ msgstr ""
|
||||
|
||||
#. name for atk
|
||||
msgid "Ati"
|
||||
msgstr ""
|
||||
msgstr "Ati"
|
||||
|
||||
#. name for atl
|
||||
msgid "Agta; Mt. Iraya"
|
||||
msgstr ""
|
||||
msgstr "Agta; Mt. Iraya"
|
||||
|
||||
#. name for atm
|
||||
msgid "Ata"
|
||||
msgstr ""
|
||||
msgstr "Ata"
|
||||
|
||||
#. name for atn
|
||||
msgid "Ashtiani"
|
||||
msgstr ""
|
||||
msgstr "Ashtiani"
|
||||
|
||||
#. name for ato
|
||||
msgid "Atong"
|
||||
msgstr ""
|
||||
msgstr "Atong"
|
||||
|
||||
#. name for atp
|
||||
msgid "Atta; Pudtol"
|
||||
msgstr ""
|
||||
msgstr "Atta; Pudtol"
|
||||
|
||||
#. name for atq
|
||||
msgid "Aralle-Tabulahan"
|
||||
msgstr ""
|
||||
msgstr "Aralle-Tabulahan"
|
||||
|
||||
#. name for atr
|
||||
msgid "Waimiri-Atroari"
|
||||
msgstr ""
|
||||
msgstr "Waimiri-Atroari"
|
||||
|
||||
#. name for ats
|
||||
msgid "Gros Ventre"
|
||||
msgstr ""
|
||||
msgstr "Gros Ventre"
|
||||
|
||||
#. name for att
|
||||
msgid "Atta; Pamplona"
|
||||
msgstr ""
|
||||
msgstr "Atta; Pamplona"
|
||||
|
||||
#. name for atu
|
||||
msgid "Reel"
|
||||
msgstr ""
|
||||
msgstr "Reel"
|
||||
|
||||
#. name for atv
|
||||
msgid "Altai; Northern"
|
||||
msgstr ""
|
||||
msgstr "Altai; Northern"
|
||||
|
||||
#. name for atw
|
||||
msgid "Atsugewi"
|
||||
msgstr ""
|
||||
msgstr "Atsugewi"
|
||||
|
||||
#. name for atx
|
||||
msgid "Arutani"
|
||||
msgstr ""
|
||||
msgstr "Arutani"
|
||||
|
||||
#. name for aty
|
||||
msgid "Aneityum"
|
||||
msgstr ""
|
||||
msgstr "Aneityum"
|
||||
|
||||
#. name for atz
|
||||
msgid "Arta"
|
||||
msgstr ""
|
||||
msgstr "Arta"
|
||||
|
||||
#. name for aua
|
||||
msgid "Asumboa"
|
||||
msgstr ""
|
||||
msgstr "Asumboa"
|
||||
|
||||
#. name for aub
|
||||
msgid "Alugu"
|
||||
msgstr ""
|
||||
msgstr "Alugu"
|
||||
|
||||
#. name for auc
|
||||
msgid "Waorani"
|
||||
msgstr ""
|
||||
msgstr "Waorani"
|
||||
|
||||
#. name for aud
|
||||
msgid "Anuta"
|
||||
msgstr ""
|
||||
msgstr "Anuta"
|
||||
|
||||
#. name for aue
|
||||
msgid "=/Kx'au//'ein"
|
||||
msgstr ""
|
||||
msgstr "=/Kx'au//'ein"
|
||||
|
||||
#. name for aug
|
||||
msgid "Aguna"
|
||||
msgstr ""
|
||||
msgstr "Aguna"
|
||||
|
||||
#. name for auh
|
||||
msgid "Aushi"
|
||||
msgstr ""
|
||||
msgstr "Aushi"
|
||||
|
||||
#. name for aui
|
||||
msgid "Anuki"
|
||||
msgstr ""
|
||||
msgstr "Anuki"
|
||||
|
||||
#. name for auj
|
||||
msgid "Awjilah"
|
||||
msgstr ""
|
||||
msgstr "Awjilah"
|
||||
|
||||
#. name for auk
|
||||
msgid "Heyo"
|
||||
msgstr ""
|
||||
msgstr "Heyo"
|
||||
|
||||
#. name for aul
|
||||
msgid "Aulua"
|
||||
msgstr ""
|
||||
msgstr "Aulua"
|
||||
|
||||
#. name for aum
|
||||
msgid "Asu (Nigeria)"
|
||||
msgstr ""
|
||||
msgstr "Asu (Nigeria)"
|
||||
|
||||
#. name for aun
|
||||
msgid "One; Molmo"
|
||||
@ -1743,7 +1743,7 @@ msgstr ""
|
||||
|
||||
#. name for auo
|
||||
msgid "Auyokawa"
|
||||
msgstr ""
|
||||
msgstr "Auyokawa"
|
||||
|
||||
#. name for aup
|
||||
msgid "Makayam"
|
||||
@ -1751,55 +1751,55 @@ msgstr ""
|
||||
|
||||
#. name for auq
|
||||
msgid "Anus"
|
||||
msgstr ""
|
||||
msgstr "Anus"
|
||||
|
||||
#. name for aur
|
||||
msgid "Aruek"
|
||||
msgstr ""
|
||||
msgstr "Aruek"
|
||||
|
||||
#. name for aut
|
||||
msgid "Austral"
|
||||
msgstr ""
|
||||
msgstr "Austral"
|
||||
|
||||
#. name for auu
|
||||
msgid "Auye"
|
||||
msgstr ""
|
||||
msgstr "Auye"
|
||||
|
||||
#. name for auw
|
||||
msgid "Awyi"
|
||||
msgstr ""
|
||||
msgstr "Awyi"
|
||||
|
||||
#. name for aux
|
||||
msgid "Aurá"
|
||||
msgstr ""
|
||||
msgstr "Aurá"
|
||||
|
||||
#. name for auy
|
||||
msgid "Awiyaana"
|
||||
msgstr ""
|
||||
msgstr "Awiyaana"
|
||||
|
||||
#. name for auz
|
||||
msgid "Arabic; Uzbeki"
|
||||
msgstr ""
|
||||
msgstr "Arabic; Uzbeki"
|
||||
|
||||
#. name for ava
|
||||
msgid "Avaric"
|
||||
msgstr ""
|
||||
msgstr "Avaric"
|
||||
|
||||
#. name for avb
|
||||
msgid "Avau"
|
||||
msgstr ""
|
||||
msgstr "Avau"
|
||||
|
||||
#. name for avd
|
||||
msgid "Alviri-Vidari"
|
||||
msgstr ""
|
||||
msgstr "Alviri-Vidari"
|
||||
|
||||
#. name for ave
|
||||
msgid "Avestan"
|
||||
msgstr ""
|
||||
msgstr "Avestan"
|
||||
|
||||
#. name for avi
|
||||
msgid "Avikam"
|
||||
msgstr ""
|
||||
msgstr "Avikam"
|
||||
|
||||
#. name for avk
|
||||
msgid "Kotava"
|
||||
|
||||
@ -4,7 +4,7 @@ __license__ = 'GPL v3'
|
||||
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
__appname__ = u'calibre'
|
||||
numeric_version = (0, 8, 34)
|
||||
numeric_version = (0, 8, 35)
|
||||
__version__ = u'.'.join(map(unicode, numeric_version))
|
||||
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"
|
||||
|
||||
|
||||
@ -26,7 +26,7 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<item row="0" column="1" colspan="2">
|
||||
<widget class="QSpinBox" name="opt_port">
|
||||
<property name="maximum">
|
||||
<number>65535</number>
|
||||
@ -46,7 +46,7 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<item row="1" column="1" colspan="2">
|
||||
<widget class="QLineEdit" name="opt_username"/>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
@ -62,11 +62,16 @@
|
||||
<item row="2" column="1">
|
||||
<widget class="QLineEdit" name="opt_password">
|
||||
<property name="toolTip">
|
||||
<string>If you leave the password blank, anyone will be able to access your book collection using the web interface.</string>
|
||||
<string><p>If you leave the password blank, anyone will be able to
|
||||
access your book collection using the web interface.
|
||||
<br>
|
||||
<p>Note that passwords do not work with Android devices.
|
||||
Leave this blank if you intend to use the server with an
|
||||
Android phone or tablet.</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="1">
|
||||
<item row="4" column="1" colspan="2">
|
||||
<widget class="QLineEdit" name="opt_max_cover">
|
||||
<property name="toolTip">
|
||||
<string>The maximum size (widthxheight) for displayed covers. Larger covers are resized. </string>
|
||||
@ -86,7 +91,7 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<item row="3" column="1" colspan="2">
|
||||
<widget class="QCheckBox" name="show_server_password">
|
||||
<property name="text">
|
||||
<string>&Show password</string>
|
||||
@ -103,7 +108,7 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="1">
|
||||
<item row="5" column="1" colspan="2">
|
||||
<widget class="QSpinBox" name="opt_max_opds_items">
|
||||
<property name="minimum">
|
||||
<number>10</number>
|
||||
@ -113,7 +118,7 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="1">
|
||||
<item row="6" column="1" colspan="2">
|
||||
<widget class="QSpinBox" name="opt_max_opds_ungrouped_items">
|
||||
<property name="minimum">
|
||||
<number>25</number>
|
||||
@ -140,7 +145,7 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="7" column="1">
|
||||
<item row="7" column="1" colspan="2">
|
||||
<widget class="QComboBox" name="opt_cs_restriction">
|
||||
<property name="toolTip">
|
||||
<string>This restriction (based on a saved search) will restrict the books the content server makes available to those matching the search. This setting is per library (i.e. you can have a different restriction per library).</string>
|
||||
@ -153,6 +158,29 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="2">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="font">
|
||||
<font>
|
||||
<weight>50</weight>
|
||||
<bold>false</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string><p>Because of a bug in Google's Android, setting a password
|
||||
will prevent the server from working with Android devices.
|
||||
<br>
|
||||
<p>Do not set a password if you plan to use the server with an
|
||||
Android phone or tablet.</string>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">QLabel {color:red}</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Password incompatible with Android devices</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
|
||||
@ -4,7 +4,7 @@ __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
# Imports {{{
|
||||
import os, math, re, glob, sys
|
||||
import os, math, re, glob, sys, zipfile
|
||||
from base64 import b64encode
|
||||
from functools import partial
|
||||
|
||||
@ -23,12 +23,10 @@ from calibre.gui2.shortcuts import Shortcuts, ShortcutConfig
|
||||
from calibre.constants import iswindows
|
||||
from calibre import prints, guess_type
|
||||
from calibre.gui2.viewer.keys import SHORTCUTS
|
||||
from calibre.gui2.viewer.javascript import JavaScriptLoader
|
||||
|
||||
# }}}
|
||||
|
||||
bookmarks = referencing = hyphenation = jquery = jquery_scrollTo = \
|
||||
hyphenator = images = hyphen_pats = None
|
||||
|
||||
def load_builtin_fonts():
|
||||
base = P('fonts/liberation/*.ttf')
|
||||
for f in glob.glob(base):
|
||||
@ -103,9 +101,9 @@ class ConfigDialog(QDialog, Ui_Dialog):
|
||||
self.css.setPlainText(opts.user_css)
|
||||
self.css.setToolTip(_('Set the user CSS stylesheet. This can be used to customize the look of all books.'))
|
||||
self.max_view_width.setValue(opts.max_view_width)
|
||||
pats = [os.path.basename(x).split('.')[0].replace('-', '_') for x in
|
||||
glob.glob(P('viewer/hyphenate/patterns/*.js',
|
||||
allow_user_override=False))]
|
||||
with zipfile.ZipFile(P('viewer/hyphenate/patterns.zip',
|
||||
allow_user_override=False), 'r') as zf:
|
||||
pats = [x.split('.')[0].replace('-', '_') for x in zf.namelist()]
|
||||
names = list(map(get_language, pats))
|
||||
pmap = {}
|
||||
for i in range(len(pats)):
|
||||
@ -188,6 +186,7 @@ class Document(QWebPage): # {{{
|
||||
self.resize_callback = resize_callback
|
||||
self.current_language = None
|
||||
self.loaded_javascript = False
|
||||
self.js_loader = None
|
||||
|
||||
self.setLinkDelegationPolicy(self.DelegateAllLinks)
|
||||
self.scroll_marks = []
|
||||
@ -244,8 +243,6 @@ class Document(QWebPage): # {{{
|
||||
self.loaded_javascript = False
|
||||
|
||||
def load_javascript_libraries(self):
|
||||
global bookmarks, referencing, hyphenation, jquery, jquery_scrollTo, \
|
||||
hyphenator, images, hyphen_pats
|
||||
if self.loaded_javascript:
|
||||
return
|
||||
self.loaded_javascript = True
|
||||
@ -255,48 +252,11 @@ class Document(QWebPage): # {{{
|
||||
window.py_bridge.window_resized();
|
||||
}
|
||||
''')
|
||||
if jquery is None:
|
||||
jquery = P('content_server/jquery.js', data=True)
|
||||
self.javascript(jquery)
|
||||
if jquery_scrollTo is None:
|
||||
jquery_scrollTo = P('viewer/jquery_scrollTo.js', data=True)
|
||||
self.javascript(jquery_scrollTo)
|
||||
if bookmarks is None:
|
||||
bookmarks = P('viewer/bookmarks.js', data=True)
|
||||
self.javascript(bookmarks)
|
||||
if referencing is None:
|
||||
referencing = P('viewer/referencing.js', data=True)
|
||||
self.javascript(referencing)
|
||||
if images is None:
|
||||
images = P('viewer/images.js', data=True)
|
||||
self.javascript(images)
|
||||
if hyphenation is None:
|
||||
hyphenation = P('viewer/hyphenation.js', data=True)
|
||||
self.javascript(hyphenation)
|
||||
default_lang = self.hyphenate_default_lang
|
||||
lang = self.current_language
|
||||
if not lang:
|
||||
lang = default_lang
|
||||
def lang_name(l):
|
||||
if l == 'en':
|
||||
l = 'en-us'
|
||||
return l.lower().replace('_', '-')
|
||||
if hyphenator is None:
|
||||
hyphenator = P('viewer/hyphenate/Hyphenator.js', data=True).decode('utf-8')
|
||||
if hyphen_pats is None:
|
||||
hyphen_pats = []
|
||||
for x in glob.glob(P('viewer/hyphenate/patterns/*.js',
|
||||
allow_user_override=False)):
|
||||
with open(x, 'rb') as f:
|
||||
hyphen_pats.append(f.read().decode('utf-8'))
|
||||
hyphen_pats = u'\n'.join(hyphen_pats)
|
||||
|
||||
self.javascript(hyphenator+hyphen_pats)
|
||||
p = P('viewer/hyphenate/patterns/%s.js'%lang_name(lang))
|
||||
if not os.path.exists(p):
|
||||
lang = default_lang
|
||||
p = P('viewer/hyphenate/patterns/%s.js'%lang_name(lang))
|
||||
self.loaded_lang = lang_name(lang)
|
||||
if self.js_loader is None:
|
||||
self.js_loader = JavaScriptLoader(
|
||||
dynamic_coffeescript=self.debug_javascript)
|
||||
self.loaded_lang = self.js_loader(self.mainFrame().evaluateJavaScript,
|
||||
self.current_language, self.hyphenate_default_lang)
|
||||
|
||||
@pyqtSignature("")
|
||||
def animated_scroll_done(self):
|
||||
|
||||
99
src/calibre/gui2/viewer/javascript.py
Normal file
99
src/calibre/gui2/viewer/javascript.py
Normal file
@ -0,0 +1,99 @@
|
||||
#!/usr/bin/env python
|
||||
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
|
||||
from __future__ import (unicode_literals, division, absolute_import,
|
||||
print_function)
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2012, Kovid Goyal <kovid@kovidgoyal.net>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
import os, zipfile
|
||||
|
||||
import calibre
|
||||
from calibre.utils.localization import lang_as_iso639_1
|
||||
|
||||
class JavaScriptLoader(object):
|
||||
|
||||
JS = {x:('viewer/%s.js'%x if y is None else y) for x, y in {
|
||||
|
||||
'bookmarks':None,
|
||||
'referencing':None,
|
||||
'hyphenation':None,
|
||||
'jquery':'content_server/jquery.js',
|
||||
'jquery_scrollTo':None,
|
||||
'hyphenator':'viewer/hyphenate/Hyphenator.js',
|
||||
'images':None
|
||||
|
||||
}.iteritems()}
|
||||
|
||||
CS = {
|
||||
'cfi':('ebooks/oeb/display/cfi.coffee', 'display/cfi.js'),
|
||||
}
|
||||
|
||||
ORDER = ('jquery', 'jquery_scrollTo', 'bookmarks', 'referencing', 'images',
|
||||
'hyphenation', 'hyphenator', 'cfi',)
|
||||
|
||||
|
||||
def __init__(self, dynamic_coffeescript=False):
|
||||
self._dynamic_coffeescript = dynamic_coffeescript
|
||||
self._cache = {}
|
||||
self._hp_cache = {}
|
||||
|
||||
def __getattr__(self, name):
|
||||
ans = self._cache.get(name, None)
|
||||
if ans is None:
|
||||
src = self.CS.get(name, None)
|
||||
if src is None:
|
||||
src = self.JS.get(name, None)
|
||||
if src is None:
|
||||
raise AttributeError('No such resource: %s'%name)
|
||||
ans = P(src, data=True,
|
||||
allow_user_override=False).decode('utf-8')
|
||||
else:
|
||||
f = getattr(calibre, '__file__', None)
|
||||
if self._dynamic_coffeescript and f and os.path.exists(f):
|
||||
src = src[0]
|
||||
src = os.path.join(os.path.dirname(f), *(src.split('/')))
|
||||
from calibre.utils.serve_coffee import compile_coffeescript
|
||||
with open(src, 'rb') as f:
|
||||
cs, errors = compile_coffeescript(f.read(), src)
|
||||
if errors:
|
||||
for line in errors:
|
||||
print (line)
|
||||
raise Exception('Failed to compile coffeescript'
|
||||
': %s'%src)
|
||||
ans = cs
|
||||
else:
|
||||
ans = P(src[1], data=True, allow_user_override=False)
|
||||
self._cache[name] = ans
|
||||
return ans
|
||||
|
||||
def __call__(self, evaljs, lang, default_lang):
|
||||
for x in self.ORDER:
|
||||
src = getattr(self, x)
|
||||
evaljs(src)
|
||||
|
||||
def lang_name(l):
|
||||
l = l.lower()
|
||||
l = lang_as_iso639_1(l)
|
||||
if not l:
|
||||
l = 'en'
|
||||
l = {'en':'en-us', 'nb':'nb-no', 'el':'el-monoton'}.get(l, l)
|
||||
return l.lower().replace('_', '-')
|
||||
|
||||
if not self._hp_cache:
|
||||
with zipfile.ZipFile(P('viewer/hyphenate/patterns.zip',
|
||||
allow_user_override=False), 'r') as zf:
|
||||
for pat in zf.namelist():
|
||||
raw = zf.read(pat).decode('utf-8')
|
||||
self._hp_cache[pat.partition('.')[0]] = raw
|
||||
|
||||
if lang_name(lang) not in self._hp_cache:
|
||||
lang = lang_name(default_lang)
|
||||
|
||||
lang = lang_name(lang)
|
||||
|
||||
evaljs('\n\n'.join(self._hp_cache.itervalues()))
|
||||
|
||||
return lang
|
||||
|
||||
@ -122,7 +122,7 @@ class Sony505(Device):
|
||||
id = 'prs505'
|
||||
|
||||
class Kobo(Device):
|
||||
name = 'Kobo Reader'
|
||||
name = 'Kobo and Kobo Touch Readers'
|
||||
manufacturer = 'Kobo'
|
||||
output_profile = 'kobo'
|
||||
output_format = 'EPUB'
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 17:39+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Afrikaans <af@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:33+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 04:57+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Doen absolute niks"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Doen absolute niks"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Doen absolute niks"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Doen absolute niks"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4756,7 +4763,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5013,12 +5020,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5614,79 +5621,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7286,25 +7293,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11247,12 +11254,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11355,7 +11362,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13115,7 +13122,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13769,20 +13776,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15024,7 +15031,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15032,34 +15051,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15297,129 +15316,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19257,3 +19276,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-09 11:30+0000\n"
|
||||
"Last-Translator: عبدالله شلي (Abdellah Chelli) <Unknown>\n"
|
||||
"Language-Team: Arabic <ar@li.org>\n"
|
||||
@ -16,8 +16,8 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= "
|
||||
"3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:34+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 04:58+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:189
|
||||
msgid "&Monospace family:"
|
||||
@ -39,19 +39,19 @@ msgstr ""
|
||||
msgid "Monospace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
@ -65,8 +65,8 @@ msgstr "لا يفعل شيءً"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -77,7 +77,7 @@ msgstr "لا يفعل شيءً"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -137,16 +137,16 @@ msgstr "لا يفعل شيءً"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -181,8 +181,8 @@ msgstr "لا يفعل شيءً"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -1018,7 +1018,7 @@ msgstr "تواصل معا هواتف S60."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1038,31 +1038,31 @@ msgstr ""
|
||||
"<em>الاتصال لايتون </ EM> عنصر القائمة <P></ P> تمكين السائق ابل للاتصال "
|
||||
"مباشر هو iDevices an معتمد وضع المستخدم المتقدمة. </ P> </ P>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "تعطيل برنامج تشغيل أبل"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "تمكن سائق أبل"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "استخدام السلسلة والفئة في اي تيونز / iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr "استخدام السلسلة والفئة في اي تيونز / iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "مخبأ يغطي من اي تيونز / iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "تمكين ذاكرة التخزين المؤقت ويغطي العرض من اي تيونز / iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1071,7 +1071,7 @@ msgstr ""
|
||||
"تمكين نسخ الملفات الى اي تيونز مجلد وسائل الإعلام ليالي %s \"في تفضيلات "
|
||||
"برنامج iTunes | متقدم"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1083,19 +1083,19 @@ msgstr ""
|
||||
"الخاص عيار التكوين. </ P> تمكين <p>ويشير إلى أن يتم تكوين برنامج iTunes "
|
||||
"لتخزين نسخة في مجلد وسائل الإعلام تيونز. </ P>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "جهاز أبل"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "التواصل عن طريق iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "تم الكشف عن جهاز ابل, يتم تشغيل iTunes, الرجاء الانتظار..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1103,29 +1103,36 @@ msgstr ""
|
||||
"لا يمكن نسخ الكتب مباشرة من iDevice. اسحب من مكتبة iTunes لسطح المكتب ، ثم "
|
||||
"إضافة إلى إطار من النظم مكتبة."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "تحديث الجهاز القائمة الفوقية..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "Copy text \t %(num)d of %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "تم"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1135,7 +1142,7 @@ msgstr ""
|
||||
"حذف باستخدام التطبيق iBooks.\n"
|
||||
"انقر على \"إظهار التفاصيل\" للقائمة."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1143,7 +1150,7 @@ msgstr ""
|
||||
"لا يمكن أن تغطي بعض الفن يمكن تحويلها.\n"
|
||||
"انقر على \"إظهار التفاصيل\" للقائمة."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1163,7 +1170,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "الأخبار"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1171,7 +1178,7 @@ msgstr "الأخبار"
|
||||
msgid "Catalog"
|
||||
msgstr "الفهرس"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "تواصل معا iTunes"
|
||||
|
||||
@ -1249,12 +1256,12 @@ msgstr "إضافة كتب لقائمة البيانات الوصفية للجه
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "يجري حذف الكتب من الجهاز..."
|
||||
|
||||
@ -1262,13 +1269,13 @@ msgstr "يجري حذف الكتب من الجهاز..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "إزالة الكتب من سرد الجهاز الفوقية..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "يجري إرسال دليل المعلومات. إلى الجهاز..."
|
||||
|
||||
@ -1390,23 +1397,23 @@ msgstr "التواصل مع القارئ الكتاب الاليكترونى Han
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "التواصل مع القارئ للكتاب."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "التواصل مع القارئ الجوية الحرة."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "التواصل مع القارئ SpringDesign الاليكترونى اليكس."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "التواصل مع Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "اﻹتصال مع الـElonex EB 511 القارئ اﻹلكتروني"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1487,8 +1494,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "التواصل مع القارئ كيندل 03/02 الاليكترونى."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1520,11 +1527,11 @@ msgstr ""
|
||||
"الصفحات التي تتوافق مع أفضل لكتاب مطبوع. ومع ذلك ، هذا الأسلوب هو أبطأ وسوف "
|
||||
"تبطئ إرسال الملفات إلى كيندل."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "التواصل مع القارئ الكتاب الاليكترونى Kindle DX ."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2294,7 +2301,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr "تعديل نص الوثيقة وهيكل استخدام أنماط يحددها المستخدم."
|
||||
|
||||
@ -5032,7 +5039,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "إنشاء فهرس الكتب في مكتبة العيار الخاص"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "لا يمكن تحويله"
|
||||
|
||||
@ -5292,12 +5299,12 @@ msgid "Connect/share"
|
||||
msgstr "الاتصال / المشاركة"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr "وقف خادم، وهذا قد يستغرق دقيقة واحدة تصل، يرجى الانتظار..."
|
||||
|
||||
@ -5898,79 +5905,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr "يتم البحث في"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "العثور على التكرارات!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "تم الحفظ"
|
||||
|
||||
@ -7572,25 +7579,25 @@ msgstr "و التالي"
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11540,12 +11547,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "الصفحة التالية"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "الصفحة السابقة"
|
||||
|
||||
@ -11648,7 +11655,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "تلف قاعدة البيانات"
|
||||
|
||||
@ -13428,7 +13435,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -14082,20 +14089,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "فشل في تشغيل خادم المحتوى"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "سجل الأخطاء:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "سجل النفاذ:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "تحتاج إلى إعادة تشغيل الملقم لتصبح التغييرات نافذة المفعول"
|
||||
|
||||
@ -15338,7 +15345,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15346,34 +15365,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "خطأ في التحويل"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15591,113 +15610,113 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "نتذكر الماضي حجم الإطار المستخدمة"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "خيارات الخط"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "قياس خط الأحادي القياس بـpx"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "القسم التالي"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "القسم السابق"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19615,3 +19634,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-09-26 16:28+0000\n"
|
||||
"Last-Translator: Xandru <xandru@softastur.org>\n"
|
||||
"Language-Team: Asturian <ast@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:34+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 04:58+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Nun fai nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Nun fai nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Nun fai nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Nun fai nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -950,7 +950,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -962,38 +962,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1001,60 +1001,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1074,7 +1081,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1082,7 +1089,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1155,12 +1162,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1168,13 +1175,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1294,23 +1301,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1391,7 +1398,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1418,11 +1425,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2129,7 +2136,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4759,7 +4766,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5016,12 +5023,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5617,79 +5624,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7289,25 +7296,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11250,12 +11257,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11358,7 +11365,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13118,7 +13125,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13772,20 +13779,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15027,7 +15034,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15035,34 +15054,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15300,129 +15319,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19260,3 +19279,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-11-22 11:21+0000\n"
|
||||
"Last-Translator: Elvin Haci <Unknown>\n"
|
||||
"Language-Team: Azerbaijani <az@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:35+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 04:59+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Heç bir şey etmir"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Heç bir şey etmir"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Heç bir şey etmir"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Heç bir şey etmir"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -948,7 +948,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -960,38 +960,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -999,60 +999,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1072,7 +1079,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1080,7 +1087,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1153,12 +1160,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1166,13 +1173,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1292,23 +1299,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1389,7 +1396,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1416,11 +1423,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2127,7 +2134,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4757,7 +4764,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5014,12 +5021,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5615,79 +5622,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7287,25 +7294,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11248,12 +11255,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11356,7 +11363,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13116,7 +13123,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13770,20 +13777,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15025,7 +15032,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15033,34 +15052,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15298,129 +15317,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19258,3 +19277,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre 0.4.51\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-09-18 08:58+0000\n"
|
||||
"Last-Translator: Nelly Hoang <Unknown>\n"
|
||||
"Language-Team: bg\n"
|
||||
@ -14,8 +14,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:36+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:00+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -28,8 +28,8 @@ msgstr "Не прави абсолютно нищо"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Не прави абсолютно нищо"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Не прави абсолютно нищо"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Не прави абсолютно нищо"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -998,7 +998,7 @@ msgstr "Комуникирай със S60 устройства"
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Сподели с WebOS таблети"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1010,32 +1010,32 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Изключване на Apple драйвера"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Включване на Apple драйвъра"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Използвай Серии като категория в iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Разрешете използването на името на сериите като iTunes жанр, iBooks категория"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Кеширай обложки от iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "Разреши кеширане и показване на обложки от iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1044,7 +1044,7 @@ msgstr ""
|
||||
"\"Копирай файлове/те в iTunes Media папка %s\" се разрешава от меню iTunes "
|
||||
"PreferencesІAdvanced"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1052,20 +1052,20 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple устройство"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Комуникирай с iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
"Apple устройство разпознато, стартиране на iTunes, моля изчакайте ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1074,29 +1074,36 @@ msgstr ""
|
||||
"библиотеката до десктопа, а след това добавете в прозорец Библиотека на "
|
||||
"calibre."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Обновяване на списъка с метаданни на устройството"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d от %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "завършено"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1106,7 +1113,7 @@ msgstr ""
|
||||
"Изтрийте, използвайки iBooks апликацията.\n"
|
||||
"Натиснете \"Show Details\", за да видите списъка."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1114,7 +1121,7 @@ msgstr ""
|
||||
"Някои от кориците на бяха конвертирани.\n"
|
||||
"Натиснете \"Show Details\", за да видите списъка."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1134,7 +1141,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Новини"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1142,7 +1149,7 @@ msgstr "Новини"
|
||||
msgid "Catalog"
|
||||
msgstr "Каталог"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1215,12 +1222,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Премахване на книги от устройството..."
|
||||
|
||||
@ -1228,13 +1235,13 @@ msgstr "Премахване на книги от устройството..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Изпращане на метаданни към устройството..."
|
||||
|
||||
@ -1354,23 +1361,23 @@ msgstr "Връзка с Hanvon N520 eBook електронен четец."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Връзка с The Book електронен четец."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Връзка с Libre Air електронен четец."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Връзка с SpringDesign Alex eBook електронен четец."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Връзка с AzBooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Връзка с Elonex EB 511 eBook електронен четец."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1451,8 +1458,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Свържи се с Kindle 2/3 eBook четеца."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1478,11 +1485,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2202,7 +2209,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4835,7 +4842,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Не може да се конвертира"
|
||||
|
||||
@ -5092,12 +5099,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5693,79 +5700,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr "Търсене в"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Добавяне ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Търсене във всички поддиректории..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Няма книги"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Не са намерени книги"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Няма разрешение"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Добавена"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Добавянето е неуспешно"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Записване..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Запазен"
|
||||
|
||||
@ -7365,25 +7372,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr "Преглед"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Неправилен регулярен израз"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11326,12 +11333,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Следваща страница"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Предишна страница"
|
||||
|
||||
@ -11434,7 +11441,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13194,7 +13201,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13850,20 +13857,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15107,7 +15114,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15115,34 +15134,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15380,129 +15399,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19340,3 +19359,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 17:36+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Bengali <bn@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:35+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 04:59+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "আসলে কিছুই করে না"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "আসলে কিছুই করে না"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "আসলে কিছুই করে না"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "আসলে কিছুই করে না"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-13 04:22+0000\n"
|
||||
"Last-Translator: Denis <Unknown>\n"
|
||||
"Language-Team: Breton <br@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:36+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:00+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Ne ra netra da vat"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Ne ra netra da vat"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Ne ra netra da vat"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Ne ra netra da vat"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -947,7 +947,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -959,38 +959,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -998,60 +998,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "Echu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1071,7 +1078,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Keleier"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1079,7 +1086,7 @@ msgstr "Keleier"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1152,12 +1159,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1165,13 +1172,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1291,23 +1298,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1388,7 +1395,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1415,11 +1422,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2126,7 +2133,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4759,7 +4766,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5016,12 +5023,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5617,79 +5624,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7289,25 +7296,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11250,12 +11257,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11358,7 +11365,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13118,7 +13125,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13772,20 +13779,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15027,7 +15034,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15035,34 +15054,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15300,129 +15319,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19260,3 +19279,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-02 13:31+0000\n"
|
||||
"Last-Translator: Kenan Dervišević <kenan3008@gmail.com>\n"
|
||||
"Language-Team: Bosnian <bs@li.org>\n"
|
||||
@ -16,8 +16,8 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-03 04:47+0000\n"
|
||||
"X-Generator: Launchpad (build 14616)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 04:59+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -29,8 +29,8 @@ msgstr "Ne radi apsolutno ništa"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -41,7 +41,7 @@ msgstr "Ne radi apsolutno ništa"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -101,16 +101,16 @@ msgstr "Ne radi apsolutno ništa"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -145,8 +145,8 @@ msgstr "Ne radi apsolutno ništa"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -950,7 +950,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -962,38 +962,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1001,60 +1001,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple uređah"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "završeno"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1074,7 +1081,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Vijesti"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1082,7 +1089,7 @@ msgstr "Vijesti"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1155,12 +1162,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Uklanjam knjige sa uređaja..."
|
||||
|
||||
@ -1168,13 +1175,13 @@ msgstr "Uklanjam knjige sa uređaja..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1294,23 +1301,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1391,7 +1398,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1418,11 +1425,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2129,7 +2136,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4760,7 +4767,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5017,12 +5024,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5618,79 +5625,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7290,25 +7297,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11251,12 +11258,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11359,7 +11366,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13119,7 +13126,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13773,20 +13780,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Nije moguće pokrenuti server sa sadržajem"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Izvještaj greške:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Izvještaj o pristupu:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15032,7 +15039,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15040,34 +15059,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Greška pri pretvaranju"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Neuspjelo</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15305,129 +15324,129 @@ msgstr "Kori&snički predložak"
|
||||
msgid "No results found for:"
|
||||
msgstr "Nema rezultata za:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Opcije za prilagođavanje preglednika e-knjiga"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Zapamti zadnju korištenu veličinu prozora"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Maksimalna širina prozora pregledniku u pikselima."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Opcije fonta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "Serif porodica fontova"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "sans-serif porodica fontova"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "monospaced porodica fontova"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "Standardna veličina fonta u px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "Veličina monospaced fonta u px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Standardna vrsta fonta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "I dalje se uređuje"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "Pog&ledaj u rječniku"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr "Traži &sljedeće pojavljivanje"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Idi na..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Sljedeća sekcija"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Prethodna sekcija"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Početak dokumenta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Kraj dokumenta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Početak sekcije"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Kraj sekcije"
|
||||
|
||||
@ -19266,3 +19285,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -10,16 +10,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ca\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-23 19:21+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-09 17:30+0000\n"
|
||||
"Last-Translator: Ferran Rius <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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:36+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-10 05:20+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -31,8 +31,8 @@ msgstr "No fa res"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -43,7 +43,7 @@ msgstr "No fa res"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -103,16 +103,16 @@ msgstr "No fa res"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -147,8 +147,8 @@ msgstr "No fa res"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -1010,7 +1010,7 @@ msgstr "Comunica't amb telèfons S60."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Comunica't amb tauletes tàctils WebOS."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1032,35 +1032,35 @@ msgstr ""
|
||||
"controlador Apple per a una connexió directa als dispositius Apple és un "
|
||||
"mode d'usuari avançat per al qual no hi ha suport.</p><p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Inhabilita el controlador Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Habilita el controlador Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Fes servir la sèrie com a categoria a l'iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Habilita la utilització del nom de la sèrie com a gènere d'iTunes, categoria "
|
||||
"d'iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Memòria cau de portades de l'iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
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:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1069,7 +1069,7 @@ msgstr ""
|
||||
"«Copia els fitxers a la carpeta d'iTunes Media %s» s'activa a Preferències "
|
||||
"d'iTunes|Avançades"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1082,20 +1082,20 @@ msgstr ""
|
||||
"calibre.</p><p>Si s'habilita indica que iTunes està configurat per desar "
|
||||
"còpies a la carpeta d'iTunes Media.</p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Dispositiu Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Comunica't amb iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1104,29 +1104,39 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
"El mode de connexió directa no és compatible. Vegeu "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 per a instruccions "
|
||||
"de com utilitzar «Connecta a l'iTunes»"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
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:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d de %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "s'ha acabat"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1136,7 +1146,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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1144,7 +1154,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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1164,7 +1174,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Notícies"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1172,7 +1182,7 @@ msgstr "Notícies"
|
||||
msgid "Catalog"
|
||||
msgstr "Catàleg"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Comunica't amb l'iTunes"
|
||||
|
||||
@ -1253,12 +1263,12 @@ msgstr "S'està afegint llibres al llistat de metadades del dispositiu..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "S'estan suprimint els llibres del dispositiu..."
|
||||
|
||||
@ -1266,13 +1276,13 @@ msgstr "S'estan suprimint els llibres del dispositiu..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "S'està suprimint llibres del llistat de metadades del dispositiu..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "S'està enviant metadades al dispositiu..."
|
||||
|
||||
@ -1394,23 +1404,23 @@ msgstr "Comunica't amb un lector Hanvon N520."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Comunica't amb un lector electrònics."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Comunica't amb un lector Libre Air."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Comunica't amb un lector SpringDesign Alex."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Comunica't amb un Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Comunica't amb un lector Elonex EB 511."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr "Comunica't amb un lector Cybook Odyssey."
|
||||
|
||||
@ -1492,8 +1502,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>Posició %(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Comunica't amb un lector Kindle 2/3"
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr "Comunica't amb un lector Kindle 2/3/4/Touch"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1528,11 +1538,11 @@ msgstr ""
|
||||
"llibre imprès. Aquest mètode però és més lent i alentirà l'enviament de "
|
||||
"fitxers al Kindle."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Comunica't amb un lector Kindle DX"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Comunica't amb el Kindle Fire"
|
||||
|
||||
@ -1576,10 +1586,13 @@ msgid ""
|
||||
"With this option Calibre will show the expired records and allow you to "
|
||||
"delete them with the new delete logic."
|
||||
msgstr ""
|
||||
"Un error en una versió anterior deixava els registres de llibres no kepub a "
|
||||
"la base de dades. Amb aquesta opció el calibre mostra els registres obsolets "
|
||||
"i permet suprimir-los amb la nova lògica de supressió."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:70
|
||||
msgid "Show Previews"
|
||||
msgstr ""
|
||||
msgstr "Mostra les previsualitzacions"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:71
|
||||
msgid ""
|
||||
@ -1587,10 +1600,13 @@ msgid ""
|
||||
"they are no longer displayed as there is no good reason to see them. Enable "
|
||||
"if you wish to see/delete them."
|
||||
msgstr ""
|
||||
"Les previsualitzacions de Kobo s'inclouen al Touch i algunes altres "
|
||||
"versions. Per defecte ja no es mostren perquè no hi ha cap motiu per fer-ho. "
|
||||
"Habiliteu-ho si les voleu veure o suprimir."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:74
|
||||
msgid "Show Recommendations"
|
||||
msgstr ""
|
||||
msgstr "Mostra les recomanacions"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:75
|
||||
msgid ""
|
||||
@ -1598,6 +1614,9 @@ msgid ""
|
||||
"but in other cases they are just pointers to the web site to buy. Enable if "
|
||||
"you wish to see/delete them."
|
||||
msgstr ""
|
||||
"El Kobo ara mostra recomanacions al dispositiu. En alguns casos són fitxers "
|
||||
"però en d'altres nomes són senyaladors al lloc web de compra. Habiliteu-ho "
|
||||
"si les voleu veure o suprimir."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:596
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:381
|
||||
@ -2365,7 +2384,7 @@ msgstr ""
|
||||
"inhabilitar les accions individuals amb les opcions %(dis)s."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
"Modifica el text i l'estructura del documenta amb els patrons definits per "
|
||||
@ -3241,6 +3260,13 @@ msgid ""
|
||||
"\"Table of Contents\" settings (turn on \"Force use of auto-generated Table "
|
||||
"of Contents\")."
|
||||
msgstr ""
|
||||
"Especifiqueu la divisió en seccions dels elements. Un valor de «nothing» fa "
|
||||
"que el el llibre tingui una única secció. Un valor de «files» fa que cada "
|
||||
"fitxer sigui una secció separada; utilitzeu aquesta opció si el vostre "
|
||||
"dispositiu té problemes amb el llibre. Un valor de «Table of Contents» "
|
||||
"converteix les entrades de l'índex en títols i crea seccions; si falla "
|
||||
"ajusteu els ajustaments de «Detecció d'estructura» i/o «Índex» (habiliteu "
|
||||
"«Força l'ús de l'índex que es generi automàticament»)."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/output.py:158
|
||||
#, python-format
|
||||
@ -3283,6 +3309,10 @@ msgid ""
|
||||
"can result in various nasty side effects in the rest of the conversion "
|
||||
"pipeline."
|
||||
msgstr ""
|
||||
"Normalment aquest connector d'entrada reordena tots els fitxers d'entrada en "
|
||||
"una jerarquia de carpetes estàndard. Utilitzeu aquesta opció només si esteu "
|
||||
"segur de què esteu fent ja que pot causar efectes desagradables no desitjats "
|
||||
"a la resta de la canal de conversió."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/html/output.py:32
|
||||
msgid "CSS file used for the output instead of the default file"
|
||||
@ -4541,6 +4571,8 @@ msgid ""
|
||||
"The size of the paper. This size will be overridden when a non default "
|
||||
"output profile is used. Default is letter. Choices are %s"
|
||||
msgstr ""
|
||||
"Mida del paper. Aquesta mida no es té en compte si s'utilitza un perfil de "
|
||||
"sortida no estàndard. Per defecte és carta. Les opcions són %s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/output.py:39
|
||||
msgid ""
|
||||
@ -5088,6 +5120,8 @@ msgid ""
|
||||
"Are you sure you want to add the same files to all %d books? If the format "
|
||||
"already exists for a book, it will be replaced."
|
||||
msgstr ""
|
||||
"Segur que voleu afegir els mateixos fitxers a tots els llibres %d? Si el "
|
||||
"format ja existeix per a un llibre se'l reemplaçarà."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:98
|
||||
msgid "Select book files"
|
||||
@ -5521,7 +5555,7 @@ msgstr ""
|
||||
"aproximada d'un llibre cada tres segons."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "No es pot convertir"
|
||||
|
||||
@ -5797,12 +5831,12 @@ msgid "Connect/share"
|
||||
msgstr "Connecta/comparteix"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "S'està aturant"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr "S'està aturant el servidor, pot trigar fins a un minut, espereu..."
|
||||
|
||||
@ -6453,37 +6487,37 @@ msgstr "No hi ha formats disponibles a %s."
|
||||
msgid "Searching in"
|
||||
msgstr "S'està cercant a"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "S'està afegint..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "S'està cercant a totes les subcarpetes..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Error al camí"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "La carpeta que s'ha indicat no es pot processar."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Cap llibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "No s'ha trobat cap llibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "No està permès"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
@ -6491,15 +6525,15 @@ msgstr ""
|
||||
"No s'ha pogut afegir alguns fitxers perquè no hi teniu permís d'accés. Feu "
|
||||
"clic a «Mostra detalls» per veure la llista dels fitxers."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "S'ha afegit"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Ha fallat en afegir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6508,11 +6542,11 @@ msgstr ""
|
||||
"calibre i afegiu els llibres en grups més petits, fins que trobeu el llibre "
|
||||
"que causa el problema."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "S'ha trobat duplicats!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -6520,19 +6554,19 @@ msgstr ""
|
||||
"Ja hi ha llibres amb el mateix títol a la base de dades. S'afegeixen "
|
||||
"igualment?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "S'estan afegint els duplicats..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "S’està desant…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "S'està recollint les dades, espereu..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "S'ha desat"
|
||||
|
||||
@ -8139,7 +8173,7 @@ msgstr "Conserva la relació d'&aspecte de la portada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:58
|
||||
msgid "&Custom size:"
|
||||
msgstr ""
|
||||
msgstr "Mida &personalitzada:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/pml_output.py:14
|
||||
msgid "PMLZ Output"
|
||||
@ -8223,7 +8257,7 @@ msgstr "&Següent"
|
||||
msgid "Preview"
|
||||
msgstr "Previsualització"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -8233,18 +8267,18 @@ msgstr ""
|
||||
"i\n"
|
||||
"reemplaça"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "Cerca expre&ssions regulars"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "L'expressió regular no és vàlida"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -8837,6 +8871,8 @@ msgid ""
|
||||
"There was a temporary error talking to the device. Please unplug and "
|
||||
"reconnect the device or reboot."
|
||||
msgstr ""
|
||||
"Hi ha hagut un error temporal en la comunicació amb el dispositiu. "
|
||||
"Desconnecteu i torneu a connectar el dispositiu o torneu a arrencar."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:795
|
||||
msgid "Device: "
|
||||
@ -12596,12 +12632,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "Barra d'eines del visor de LRF"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Pàgina següent"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Pàgina anterior"
|
||||
|
||||
@ -12715,7 +12751,7 @@ msgstr ""
|
||||
"seguit."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Base de dades malmesa"
|
||||
|
||||
@ -14727,7 +14763,7 @@ msgstr ""
|
||||
"podreu establir més preferències fins que s'hagi reiniciat."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Cal reiniciar"
|
||||
|
||||
@ -15122,7 +15158,7 @@ msgstr "No s'ha trobat cap connector que coincideixi"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:276
|
||||
msgid "files"
|
||||
msgstr ""
|
||||
msgstr "fitxers"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:277
|
||||
msgid "Add plugin"
|
||||
@ -15512,20 +15548,20 @@ msgstr ""
|
||||
"pot substituir personalitzant els connectors d'interfície de dispositiu a "
|
||||
"Preferències->Avançat->Connectors"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "No s'ha pogut iniciar el servidor de continguts"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Registre d'error:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Registre d'accés:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "Heu de reiniciar el servidor per tal que els canvis s'apliquin"
|
||||
|
||||
@ -16942,7 +16978,22 @@ msgstr ""
|
||||
"el registre de depuració estarà disponible al fitxer: %s<p> El registre es "
|
||||
"mostrarà automàticament."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr "No s'ha pogut iniciar el servidor de continguts"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"No s'ha pogut iniciar el servidor de continguts. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -16953,23 +17004,23 @@ msgstr ""
|
||||
"el calibre intenti reconstruir-la automàticament? Pot ser que no es pugui "
|
||||
"reconstruir totalment."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Error de conversió"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Recepta inhabilitada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Ha fallat</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "Hi ha tasques actives. Segur que voleu sortir?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -16979,11 +17030,11 @@ msgstr ""
|
||||
" Si sortiu podeu malmetre el dispositiu.<br>\n"
|
||||
" Segur que voleu sortir?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "Tasques actives"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -17190,17 +17241,19 @@ msgstr "Amplada de &visualització màxima:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:210
|
||||
msgid "Font &magnification step size:"
|
||||
msgstr ""
|
||||
msgstr "Mida del pas de l'increment de la &mida de lletra:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:211
|
||||
msgid ""
|
||||
"The amount by which the font size is increased/decreased\n"
|
||||
" when you click the font size larger/smaller buttons"
|
||||
msgstr ""
|
||||
"La quantitat que s'augmenta/disminueix la mida de lletra\n"
|
||||
" en fer clic als botons de major/menor mida de lletra"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:213
|
||||
msgid "%"
|
||||
msgstr ""
|
||||
msgstr "%"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:214
|
||||
msgid "&General"
|
||||
@ -17232,17 +17285,17 @@ msgstr "&Full d'estils de l'usuari"
|
||||
msgid "No results found for:"
|
||||
msgstr "No hi ha resultats per a:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Opcions per personalitzar el visor de llibres electrònics"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Recorda la darrera mida de finestra que s'ha fet servir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -17250,78 +17303,80 @@ msgstr ""
|
||||
"Estableix el full d'estils CSS de l'usuari. Es fa servir per personalitzar "
|
||||
"l'aspecte de tots els llibres."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Mida màxima de la finestra del visor en píxels."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
"Redimensiona les imatges més grans que la finestra del visor perquè hi "
|
||||
"càpiguen."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Posa guions al text"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Idioma per defecte per a les regles dels guions"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "Desa la posició actual al document en sortir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "Fer que es passin pàgines amb la roda del ratolí"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
"El temps en segons per a l'animació del pas de pàgina. Per defecte és mig "
|
||||
"segon."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
"La quantitat del canvi en la mida de lletra en fer clic als botos de "
|
||||
"major/menor mida de lletra. Ha de ser un nombre entre «0» i «1»."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Opcions del tipus de lletra"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "Grup de tipus de lletra Serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "Grup de tipus de lletra Sans-serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "Grup de tipus de lletra Monoespai"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "Mida del tipus de lletra en px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "Mida del tipus de lletra Monoespai en px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Tipus de lletra estàndard"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "Encara s'està editant"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
@ -17329,40 +17384,40 @@ msgstr ""
|
||||
"Esteu editant una drecera de teclat, cal completar-ho primer fent clic fora "
|
||||
"del quadre d'edició de dreceres."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "&Cerca al diccionari"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr "&Cerca la coincidència següent"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Vés a..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Propera secció"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Secció anterior"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Inici del document"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Final del document"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Inici de la secció"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Final de la secció"
|
||||
|
||||
@ -20864,6 +20919,8 @@ msgid ""
|
||||
"Interpreter dies while executing a command. To see the command, click Show "
|
||||
"details"
|
||||
msgstr ""
|
||||
"L'intèrpret s'ha tancat mentre s'executava una ordre. Per veure el "
|
||||
"comandament feu clic a «Mostra detalls»"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/main.py:20
|
||||
msgid "Welcome to"
|
||||
@ -22293,3 +22350,14 @@ msgstr ""
|
||||
"opcions\n"
|
||||
"i repetir-ho. Si s'estableix a «False» s'evita que el calibre desi el fitxer "
|
||||
"original."
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr "Nombre de llibres llegits recentment que es mostren"
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-10-25 20:43+0000\n"
|
||||
"Last-Translator: Marek Sušický <Unknown>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:37+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:01+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Nedělá vůbec nic"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Nedělá vůbec nic"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Nedělá vůbec nic"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Nedělá vůbec nic"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -986,7 +986,7 @@ msgstr "Komunikovat s telefony S60."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Spojeno s tablety s WebOS"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -998,31 +998,31 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Zablokovat Apple ovladač"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Povolit Apple ovladač"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Použít sérii jako kategorii v iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr "Povolit použití jména série jako žánr iTunes a kategorii iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Ukládat obálky z iTunes/iBooks do mezipaměti"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "Povolit nahrání do mezipaměti a zobrazení obálek z iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1031,7 +1031,7 @@ msgstr ""
|
||||
"\"Kopírování souborů do složky iTunes Media %s\" je povoleno v Nastavení "
|
||||
"iTunes|Pokročilé"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1039,19 +1039,19 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Zařízení Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Komunikovat s iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1059,29 +1059,36 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Záznamy metadat v zařízení se aktualizují..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d z %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "dokončeno"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1091,7 +1098,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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1099,7 +1106,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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1119,7 +1126,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Zprávy"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1127,7 +1134,7 @@ msgstr "Zprávy"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Komunikovat s iTunes."
|
||||
|
||||
@ -1207,12 +1214,12 @@ msgstr "Přidávání knih do seznamu metadat v zařízení..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Odebírání knih ze zařízení..."
|
||||
|
||||
@ -1220,13 +1227,13 @@ msgstr "Odebírání knih ze zařízení..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Odebírání knih ze seznamu metadat v zařízení..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Odesílání metadat do zařízení..."
|
||||
|
||||
@ -1348,23 +1355,23 @@ msgstr "Komunikace se čtečkou Hanvon N520."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Komunikace se čtečkou The Book."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Spojeno s Libre Air reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Komunikace se čtečkou SpringDesign Alex."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Komunikace s Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Komunikace se čtečkou Elonex EB 511."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1445,8 +1452,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>Místo %(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Komunikace se čtečkou Kindle 2/3."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1479,11 +1486,11 @@ msgstr ""
|
||||
"stránky lépe odpovídající tištěné knize. Nicméně tato metoda je pomalejší a "
|
||||
"zpomalí odesílání souborů do Kindle."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Komunikace se čtečkou Kindle DX."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2277,7 +2284,7 @@ msgstr ""
|
||||
"mohou být zakázány pomocí nastavení %(dis)s."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr "Upravit text a strukturu dokumentu pomocí určených šablon."
|
||||
|
||||
@ -5280,7 +5287,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Vytvořit katalog z knih ve Vaší calibre knihovně"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Nemůžu převást"
|
||||
|
||||
@ -5553,12 +5560,12 @@ msgid "Connect/share"
|
||||
msgstr "Připojit/sdílet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Zastavuji"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr "Zastavuji server, to může trvat až minutu, prosím, čekejte..."
|
||||
|
||||
@ -6188,37 +6195,37 @@ msgstr "%s není dostupná v žádném dostupném formátu."
|
||||
msgid "Searching in"
|
||||
msgstr "Hledám v"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Přidávám..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Prohledávám všechny podadresáře..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Chybná cesta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "Zadaný adresář nebylo možné zpracovat."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Žádné knihy"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Nenalezeny žádné knihy"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Nedostatečná práva"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
@ -6226,15 +6233,15 @@ msgstr ""
|
||||
"Nemůžete přidávat soubory pokud k nim nemáte povolen přístup. Klikněte na "
|
||||
"\"Ukázat podrobnosti\" pro seznam těchto souborů."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Přidáno"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Přidání selhalo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6242,30 +6249,30 @@ msgstr ""
|
||||
"Proces přidávající knihy se zřejmě zasekl. Zkuste restartovat calibre a "
|
||||
"přidat knihy v menších dávkách, dokud nenaleznete problémovou knihu."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Byly nalezeny duplikáty!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
"Knihy se stejným názvem jsou již v databázi. Mají být přesto přidány?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Přidávám duplikáty..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Ukládám..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "Sbírám data, čekejte prosím..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Uloženo"
|
||||
|
||||
@ -7895,7 +7902,7 @@ msgstr "&Další"
|
||||
msgid "Preview"
|
||||
msgstr "Náhled"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -7905,18 +7912,18 @@ msgstr ""
|
||||
"&\n"
|
||||
"Nahradit"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "&Hledat regulární výraz"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Neplatný regulární výraz"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -12066,12 +12073,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "Nástrojová išta prohlížeče LRF"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Následující strana"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Předcházející strana"
|
||||
|
||||
@ -12174,7 +12181,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "Špatné umístění databáze %r. Calibre bude nyní ukončeno."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Poškozená databáze"
|
||||
|
||||
@ -13990,7 +13997,7 @@ msgstr ""
|
||||
"změnit žádné další nastavení, dokud calibre nerestartujete."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Vyžadován restart"
|
||||
|
||||
@ -14659,20 +14666,20 @@ msgstr ""
|
||||
"jednotlivá zařízení přizpůsobením pluginů rozhraní zařízení v Nastavení-> "
|
||||
"Upřesnit-> Pluginy"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Nepodařilo se spustit obdahový server"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Záznam o chybách:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Záznam o přístupu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "Musíte restartovat server, aby se změny projevily"
|
||||
|
||||
@ -15929,7 +15936,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15937,23 +15956,23 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Chyba převodu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Zdroj zakázán"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Selhalo</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "Prpbíha zpracování úloh. Opravdu chcete program ukončit?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -15963,11 +15982,11 @@ msgstr ""
|
||||
" Ukončení může způsobit poškození v zařízení.<br>\n"
|
||||
" Jste si jisti?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "Aktivní joby"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -16210,17 +16229,17 @@ msgstr "Použít &styly"
|
||||
msgid "No results found for:"
|
||||
msgstr "Žádné výsledky nenalezeny pro:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Možnosti úpravy prohlížeče elektronických knih"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Zapamatuj si posledně použitou velikost okna"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -16228,76 +16247,76 @@ msgstr ""
|
||||
"Nastaví uživatelské kaskádové styly, kterými je možné upravit vzhled všech "
|
||||
"knih."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Maximální šířka okna prohlížeče, v pixelech."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
"Změnit velikost obrázků větších než okno prohlížeče (dle velikosti tohoto "
|
||||
"okna)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Dělení slov v textu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Výchozí jazyk pro pravidla dělení slov"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "Uložit současnou pozici v dokumentu při zavídání."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Nastavení písma"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "Patkové písmo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "Rodina fontů sans-serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "Rodina fontů monospaced"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "Velikost standartního fontu v px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "Velikost fontu monospaced v px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Standardní typ fontu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
@ -16305,40 +16324,40 @@ msgstr ""
|
||||
"Máte rozpracovánu editaci klávesové zkratky, nejprve ji dokončete kliknutím "
|
||||
"mimo editační box"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "Podívat do slovníku"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Přejít na..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Další sekce"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Předchozí sekce"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Začátek dokumentu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Konec dokumentu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Začátek sekce"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Konec sekce"
|
||||
|
||||
@ -20391,3 +20410,14 @@ msgstr ""
|
||||
"že převod je špatný, můžete upravit nastavení a zkusit to znovu.\n"
|
||||
"Když je nastaveno na \"Ne\" můžete zabránit aby calibre ukládalo\n"
|
||||
"původní soubor."
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,16 +7,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-01 08:15+0000\n"
|
||||
"Last-Translator: Ida Nielsen <Unknown>\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-11 05:05+0000\n"
|
||||
"Last-Translator: Bent Stigsen <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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-02 04:59+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-12 05:38+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Gør absolut ingenting"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Gør absolut ingenting"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Gør absolut ingenting"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Gør absolut ingenting"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -991,7 +991,7 @@ msgstr "Kommunikér med S60 telefoner."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Kommunikerer med WebOS tablets"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1003,38 +1003,40 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Deaktivér Apple driver"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Aktivér Apple driver"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Brug serier som kategori i iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr "Aktivér til at anvende series navn som iTunes Genre, iBooks Category"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Cache omslag fra iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "Aktivér til at cache og vise omslag fra iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
"\"Kopier filer til iTunes Media folder %s\" er aktiveret i iTunes "
|
||||
"Indstillinger|Avanceret"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1042,19 +1044,19 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple enhed"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Kommunikér med iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1062,29 +1064,39 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
"Ikke understøttet direkte forbindelses tilstand. Se "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instruktion i "
|
||||
"brugen af 'Forbind til iTunes'"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Opdaterer enhed metadata listen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
msgstr "%(num)d af %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "afsluttet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1094,7 +1106,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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1102,7 +1114,7 @@ msgstr ""
|
||||
"Nogle omslagsdele kunne ikke konverteres.\n"
|
||||
"Klik 'Show Details' for en liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1122,7 +1134,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Nyheder"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1130,7 +1142,7 @@ msgstr "Nyheder"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommunikér med iTunes."
|
||||
|
||||
@ -1210,12 +1222,12 @@ msgstr "Tilføjer bøger til enhedens metadataliste..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Fjerner bøger fra enhed..."
|
||||
|
||||
@ -1223,13 +1235,13 @@ msgstr "Fjerner bøger fra enhed..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Fjerner bøger fra enhedens metadataliste..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Sender metadata til enhed..."
|
||||
|
||||
@ -1351,23 +1363,23 @@ msgstr "Kommunikér med Hanvon N520 eBook læser."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Kommunikér med The Book læser."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Kommunikér med Libre Air reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Kommunikér med SpringDesign Alex eBook læser."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Kommunikér med Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Kommunikér med Elonex EB 511 eBook læser."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1448,8 +1460,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Kommunikér med Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1483,11 +1495,11 @@ msgstr ""
|
||||
"trkt bog. Men denne metode er langsommere og gøre overførselsbehandlingen "
|
||||
"til Kindle langsommere."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Kommunikér med Kindle DX e-bogslæser."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Kommunikerer med Kindle Fire"
|
||||
|
||||
@ -1542,7 +1554,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:74
|
||||
msgid "Show Recommendations"
|
||||
msgstr ""
|
||||
msgstr "Vis anbefalinger"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:75
|
||||
msgid ""
|
||||
@ -1587,6 +1599,9 @@ msgid ""
|
||||
"/><b>Chapter Progress:</b> %(chapter_progress)s%%<br /><b>Highlight:</b> "
|
||||
"%(text)s<br /><hr />"
|
||||
msgstr ""
|
||||
"<b>Kapitel %(chapter)d:</b> %(chapter_title)s<br /><b>%(typ)s</b><br "
|
||||
"/><b>Kapitel fremskridt:</b> %(chapter_progress)s%%<br /><b>Highlight:</b> "
|
||||
"%(text)s<br /><hr />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1069
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:1079
|
||||
@ -2254,7 +2269,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -5157,7 +5172,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Kan ikke konvertere"
|
||||
|
||||
@ -5419,12 +5434,12 @@ msgid "Connect/share"
|
||||
msgstr "Forbind/del"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Stopper"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -6034,51 +6049,51 @@ msgstr "%s har ingen tilgængelige formater."
|
||||
msgid "Searching in"
|
||||
msgstr "Søger i"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Tilføjer..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Søger i alle underkataloger..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Sti fejl"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "Den angivne mappe kunne ikke behandles."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Ingen bøger"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Ingen bøger fundet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Ingen tilladelse"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Tilføjet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Tilføjning fejlede"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6086,11 +6101,11 @@ msgstr ""
|
||||
"\"Tilføj bøger\"-processen synes at hænge. Prøv at genstarte calibre og "
|
||||
"tilføj bøgerne i mindre bundter, indtil du har fundet en problembog."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Dubletter fundet!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -6098,19 +6113,19 @@ msgstr ""
|
||||
"Bøger med den samme titel som den følgende eksisterer allerede i databasen. "
|
||||
"Tilføj dem alligevel?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Tilføjer dubletter..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Gemmer..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Gemt"
|
||||
|
||||
@ -7743,7 +7758,7 @@ msgstr "&Næste"
|
||||
msgid "Preview"
|
||||
msgstr "Forhåndsvisning"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -7753,18 +7768,18 @@ msgstr ""
|
||||
"&\n"
|
||||
"Erstat"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Ugyldigt regulært udtryk"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11831,12 +11846,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "LRF-viser værktøjslinje"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Næste side"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Forrige side"
|
||||
|
||||
@ -11939,7 +11954,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "Uegnet databaseplacering %r. calibre vil nu slutte."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Ødelagt database"
|
||||
|
||||
@ -13755,7 +13770,7 @@ msgstr ""
|
||||
"kunne lave flere ændringer, før du genstarter."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Programgenstart nødvendig"
|
||||
|
||||
@ -14453,20 +14468,20 @@ msgstr ""
|
||||
"ved at tilpasse enhedens grænseflade moduludvidelser i Indstillinger-"
|
||||
">Avanceret->Moduludvidelser"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Fejlede med at starte indholdsserveren"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Fejl log:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Tilgangslog:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "Du skal genstarte serveren, for at ændringerne træder i kraft"
|
||||
|
||||
@ -15729,7 +15744,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15737,23 +15764,23 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Konverteringsfejl"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Opskrift deaktiveret"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Fejlede</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "Der er aktive opgaver. Er du sikker på du vil afslutte?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -15764,11 +15791,11 @@ msgstr ""
|
||||
"enheden.<br>\n"
|
||||
" Er du sikker på at du vil afslutte?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -16010,17 +16037,17 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr "Ingen resultater fundet for:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Indstillinger til tilpasning af e-bogsviseren"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Husk størrelsen på vinduet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -16028,114 +16055,114 @@ msgstr ""
|
||||
"Sætter det brugerdefinerede CSS stilark. Dette kan bruges til at tilpasse "
|
||||
"udseendet af alle bøger."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Maksimal bredde på viserens vindue, i pixels"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
"Skalér billeder større end visningsvinduet for at det kan rummes heri"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Orddel tekst"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Standard sprog for orddelingsregler"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Skrifttypeindstillinger"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "Serif-skrifttypefamilien"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "Sans-serif-skrifttypefamilien"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "Monospaced-skrifttypefamilien"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "Standard skriftstørrelse i px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "Monospaced skriftstørrelse i px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Standard skrifttype"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "&Opslag i ordbog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Gå til..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Næste sektion"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Forrige sektion"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Dokument start"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Dokument slut"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Sektion start"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Sektion slut"
|
||||
|
||||
@ -20296,3 +20323,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-04 17:01+0000\n"
|
||||
"Last-Translator: Sasa Boskovic <Unknown>\n"
|
||||
"Language-Team: American English <kde-i18n-doc@lists.kde.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-05 05:25+0000\n"
|
||||
"X-Generator: Launchpad (build 14625)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:03+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
"X-Poedit-Bookmarks: 3327,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
|
||||
@ -30,8 +30,8 @@ msgstr "Macht absolut gar nichts"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -42,7 +42,7 @@ msgstr "Macht absolut gar nichts"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -102,16 +102,16 @@ msgstr "Macht absolut gar nichts"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -146,8 +146,8 @@ msgstr "Macht absolut gar nichts"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -1007,7 +1007,7 @@ msgstr "Kommunikation mit S60-Telefonen."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Kommuniziere mit WebOS Tablets."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1030,34 +1030,34 @@ msgstr ""
|
||||
"Verbindung mit iDevices ist eine nicht offiziell unterstütze Methode für "
|
||||
"fortgeschrittene Benutzer. </p><p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Abschalten des Apple-Treibers"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Einschalten des Apple-Treibers"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Verwende Buchreihen als Kategorien in iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Aktivieren, um Seriennamen als iTunes Genre, iBooks Kategorie zu benutzen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Umschlagbilder von iTunes/iBooks zwischenspeichern"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
"Ermöglicht das Zwischenspeichern und anzeigen von Umschlägen aus "
|
||||
"iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1066,7 +1066,7 @@ msgstr ""
|
||||
"\"Kopieren von Dateien zum iTunes Medienordner %s\" ist aktiviert in den "
|
||||
"iTunes Einstellungen|Erweitert"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1079,20 +1079,20 @@ msgstr ""
|
||||
"Einstellungsverzeichnis speichern.</p><p>Aktivieren gibt an, dass iTunes so "
|
||||
"konfiguriert ist, das Kopien im iTunes Medienordner gespeichert werden.</p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple- Gerät"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Kommunikation mit iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
"Gerät von Apple entdeckt, iTunes wird gestartet, einen Moment bitte …"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1100,29 +1100,36 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Aktualisiere die Liste der Geräte-Metadaten..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d von %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "abgeschlossen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1132,7 +1139,7 @@ msgstr ""
|
||||
"Zum Löschen die iBooks App verwenden.\n"
|
||||
"Klicken Sie 'Details anzeigen' für eine Liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1140,7 +1147,7 @@ msgstr ""
|
||||
"Einige Umschlagbilder konnten nicht konvertiert werden.\n"
|
||||
"Klicken Sie 'Details anzeigen' für eine Liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1160,7 +1167,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Nachrichten"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1168,7 +1175,7 @@ msgstr "Nachrichten"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommunikation mit iTunes."
|
||||
|
||||
@ -1249,12 +1256,12 @@ msgstr "Bücher zur Metadaten-Liste des Geräts hinzufügen ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Bücher vom Gerät entfernen ..."
|
||||
|
||||
@ -1262,13 +1269,13 @@ msgstr "Bücher vom Gerät entfernen ..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Bücher von der Metadaten-Liste des Geräts entfernen ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Metadaten ans Gerät senden ..."
|
||||
|
||||
@ -1390,23 +1397,23 @@ msgstr "Kommunikation mit dem Hanvon N520 E-Book-Reader."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Kommunikation mit dem The Book Reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Kommuniziere mit dem Libre Air reader"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Kommunikation mit dem SpringDesign Alex E-Book-Reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Kommunikation mit Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Kommunikation mit dem Elonex EB 511 E-Book-Reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr "Verbinde mit dem Cybook Odyssey eBook Leser"
|
||||
|
||||
@ -1487,8 +1494,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>Ort %(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Kommunikation mit dem Kindle 2/3 E-Book-Reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1523,11 +1530,11 @@ msgstr ""
|
||||
"Büchern übereinstimmen. Allerdings ist diese Methode langsamer und wird das "
|
||||
"Übertragen von Dateien an den Kindle verlangsamen."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Kommunikation mit dem Kindle DX E-Book-Reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Verbinde mit dem Kindle Fire"
|
||||
|
||||
@ -2370,7 +2377,7 @@ msgstr ""
|
||||
"Individuelle Aktionen können mit der Option %(dis)s deaktiviert werden."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
"Ändere Text und Struktur des Dokument durch Nutzung von benutzerdefinierten "
|
||||
@ -5564,7 +5571,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Einen Katalog der Bücher in Ihrer Calibre-Bibliothek erstellen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Konvertierung nicht möglich"
|
||||
|
||||
@ -5838,12 +5845,12 @@ msgid "Connect/share"
|
||||
msgstr "Verbinden/Teilen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Stoppe"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
"Halte Server an, dies kann bis zu einer Minute dauern, bitte warten ..."
|
||||
@ -6505,37 +6512,37 @@ msgstr "%s hat keine verfügbaren Formate."
|
||||
msgid "Searching in"
|
||||
msgstr "Suche in"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Füge hinzu..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Suche in allen Unterverzeichnissen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Verzeichnis Fehler"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "Das angegebene Verzeichnis konnte nicht bearbeitet werden."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Keine Bücher"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Keine Bücher gefunden"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Zugriff verweigert"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
@ -6543,15 +6550,15 @@ msgstr ""
|
||||
"Konnte Dateien nicht hinzufügen, da Sie die erforderlichen Lese-Rechte nicht "
|
||||
"besitzen. Klicken Sie auf Details anzeigen um die Dateien zu sehen.."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Hinzugefügt"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Hinzufügen schlug fehl"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6560,11 +6567,11 @@ msgstr ""
|
||||
"Versuchen Sie Calibre neu zu starten und fügen Sie die Bücher in kleineren "
|
||||
"Mengen hinzu, bis Sie das verantwortliche Buch finden."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Duplikate gefunden!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -6572,19 +6579,19 @@ msgstr ""
|
||||
"Es gibt schon Bücher mit dem selben Titel wie die folgenden in der "
|
||||
"Datenbank. Trotzdem hinzufügen?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Füge Duplikate hinzu..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Wird gespeichert …"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "Sammle Daten, bitte warten..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Gespeichert"
|
||||
|
||||
@ -8274,7 +8281,7 @@ msgstr "&Nächstes"
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -8284,18 +8291,18 @@ msgstr ""
|
||||
"&\n"
|
||||
"Ersetzen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "&Suchausdruck"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Ungültiger regulärer Ausdruck"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -12665,12 +12672,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "LRF Viewer Symbolleiste"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Nächste Seite"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Vorherige Seite"
|
||||
|
||||
@ -12779,7 +12786,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "Ungültiger Datenbank-Ort %r. Calibre beendet sich jetzt."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Beschädigte Datenbank"
|
||||
|
||||
@ -14782,7 +14789,7 @@ msgstr ""
|
||||
"keine Einstellungen mehr ändern, bevor Sie neu starten."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Neustart erforderlich"
|
||||
|
||||
@ -15548,20 +15555,20 @@ msgstr ""
|
||||
"Geräteschnittstellen- Plugin in Einstellungen->Erweitert->Plugins "
|
||||
"überschrieben werden."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Inhalte-Server konnte nicht gestartet werden"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Fehler Log:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Zugriffs-Protokolldatei:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
"Sie müssen den Server neu starten, damit die Änderungen wirksam werden"
|
||||
@ -16909,7 +16916,19 @@ msgstr ""
|
||||
"Programms wird ein Fehlerdiagnoseprotokoll erstellt: %s<p>Das Protokoll wird "
|
||||
"automatisch angezeigt."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -16920,24 +16939,24 @@ msgstr ""
|
||||
"dass calibre versucht diese automatisch wiederherzustellen? Die "
|
||||
"Wiederherstellung könnte nicht komplett erfolgreich sein."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Konvertierungsfehler"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Downloadschema ausgeschalten"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Misslungen</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
"Es bestehen aktive Aufträge. Sind Sie sicher, dass Sie es beenden wollen?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -16948,11 +16967,11 @@ msgstr ""
|
||||
"verursachen.<br>\n"
|
||||
" Sind Sie sicher, dass Sie beenden möchten?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "Aktive Aufträge"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -17201,17 +17220,17 @@ msgstr "Benutzer &Stylesheet"
|
||||
msgid "No results found for:"
|
||||
msgstr "Kein Ergebnis gefunden für:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Einstellungen zum Anpassen des E-Book Viewers"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Zuletzt verwendete Fenstergröße merken"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -17219,76 +17238,76 @@ msgstr ""
|
||||
"Geben Sie das Benutzerlayout als CSS an. Verwenden Sie dies zur Anpassung "
|
||||
"des Aussehens aller Bücher."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Maximale Bildschirmbreite in Punkt."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr "Bilder, die größer als das Viewer-Fenster sind, passend verkleinern"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Silbentrennung"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Voreingestellte Sprache für die Regeln der Silbentrennung"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "Beim Verlassen die aktuelle Position im Dokument speichern"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "Mit dem Mausrad umblättern"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
"Die Zeit in Sekunden für die Umblättern Animation. Standard ist eine halbe "
|
||||
"Sekunde."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Schrifteinstellungen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "Serife Schriftartfamilie"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "Serifenlose Schriftartfamilie"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "Nichtproportionale Schriftartfamilie"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "Standardschriftgröße in Punkt"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "Nichtproportionale Schriftgröße in Punkt"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Standardschriftart"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "Am bearbeiten"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
@ -17296,40 +17315,40 @@ msgstr ""
|
||||
"Sie editieren momentan Tastenkürzel. Beenden Sie dies zuerst durch einen "
|
||||
"Klick außerhalb des Tatenkürzeldialogs."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "Im Wörterbuch nachsch&lagen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Gehe zu..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Nächster Abschnitt"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Vorheriger Abschnitt"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Beginn des Dokuments"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Ende des Dokuments"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Beginn des Abschnitts"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Ende des Abschnitts"
|
||||
|
||||
@ -21716,3 +21735,14 @@ msgstr ""
|
||||
"Konvertierung, die Einstellungen optimiert und Konvertierung erneut \n"
|
||||
"durchgeführt werden können. Wird diese Option abgewählt, speichert Calibre\n"
|
||||
"die Originaldatei nicht."
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-07 00:13+0000\n"
|
||||
"Last-Translator: SteliosGero <Unknown>\n"
|
||||
"Language-Team: Greek <el@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:39+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:04+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Δεν κάνει τίποτα"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Δεν κάνει τίποτα"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Δεν κάνει τίποτα"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Δεν κάνει τίποτα"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -1013,7 +1013,7 @@ msgstr "Επικοινωνία με τηλέφωνα S60."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Επικοινωνία με tablet WebOS"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1025,40 +1025,40 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Απενεργοποίηση οδηγού Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Ενεργοποίηση οδηγού Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Χρησιμοποιήσε την Σειρά ως Κατηγορία στο iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Ενεργοποιείστε για να χρησιμοποιήσετε το όνομα σειράς ως Είδος στο iTunes "
|
||||
"και Κατηγορία στο iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Αποθηκεύστε προσωρινά τα εξώφυλα απο το iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1066,47 +1066,54 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Συσκευή Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Επικοινωνία με iTunes/iBook"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Συσκευή της Apple εντοπίστηκε, έναρξη iTunes, παρακαλώ περιμένετε..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Ενημέρωση καταλόγου μεταδεδομένων της συσκευής"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "ολοκληρώθηκε"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1116,13 +1123,13 @@ msgstr ""
|
||||
"Διαγράψτε την εφαρμογή iBooks.\n"
|
||||
"Πατήστε 'Εμφάνιση Λεπτομερειών' για την λίστα."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1142,7 +1149,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Ειδήσεις"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1150,7 +1157,7 @@ msgstr "Ειδήσεις"
|
||||
msgid "Catalog"
|
||||
msgstr "Κατάλογος"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Επικοινωνία με το iTunes"
|
||||
|
||||
@ -1231,12 +1238,12 @@ msgstr "Προσθήκη βιβλίων στον κατάλογο μεταδεδ
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Αφαίρεση βιβλίων από τη συσκευή..."
|
||||
|
||||
@ -1244,13 +1251,13 @@ msgstr "Αφαίρεση βιβλίων από τη συσκευή..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Αφαίρεση βιβλίων από τον κατάλογο μεταδεδομένων της συσκευής..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Αποστολή μεταδεδομένων στη συσκευή..."
|
||||
|
||||
@ -1370,23 +1377,23 @@ msgstr "Επικοινωνία με το ηλ.αναγνωστήριο Hanvon N5
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Επικοινωνία με το ηλ.αναγνωστήριο."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Επικοινωνία με το ηλ.αναγνωστήριο SpringDesign Alex."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Επικοινωνία με το Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Επικοινωνία με το ηλ.αναγνωστήριο Elonex EB 511."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1467,7 +1474,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1494,11 +1501,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Επικοινωνία με το ηλ.αναγνωστήριο Kindle DX."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2265,7 +2272,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4975,7 +4982,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Δημιουργία καταλόγου βιβλίων της βιβλιοθήκης calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5234,12 +5241,12 @@ msgid "Connect/share"
|
||||
msgstr "Σύνδεση/διαμοιρασμός"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5840,79 +5847,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Γίνεται προσθήκη..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Προστέθηκε"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Αποθήκευση..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Αποθηκεύτηκε"
|
||||
|
||||
@ -7512,25 +7519,25 @@ msgstr "Επόμε&νο"
|
||||
msgid "Preview"
|
||||
msgstr "Προεπισκόπηση"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Άκυρη κανονική έκφραση"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11473,12 +11480,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Επόμενη Σελίδα"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Προηγούμενη Σελίδα"
|
||||
|
||||
@ -11581,7 +11588,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13341,7 +13348,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13995,20 +14002,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Αρχείο καταγραφής σφαλμάτων:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Αρχείο καταγραφής προσβάσεων:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15250,7 +15257,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15258,34 +15277,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Σφάλμα Μετατροπής"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Η συνταγή Απενεργοποιήθηκε"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Απέτυχε</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15523,129 +15542,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Επιλογές γραμματοσειράς"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Μετάβαση στο..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Επόμενο τμήμα"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Προηγούμενο τμήμα"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19505,3 +19524,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 16:13+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: English (Australia) <en_AU@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:52+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:17+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 17:28+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: English (Canada) <en_CA@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:53+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:18+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Does absolutely nothing"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Does absolutely nothing"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Does absolutely nothing"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Does absolutely nothing"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -950,7 +950,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -962,38 +962,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1001,60 +1001,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1074,7 +1081,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "News"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1082,7 +1089,7 @@ msgstr "News"
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1155,12 +1162,12 @@ msgstr "Adding books to device metadata listing…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Removing books from device…"
|
||||
|
||||
@ -1168,13 +1175,13 @@ msgstr "Removing books from device…"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Removing books from device metadata listing…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Sending metadata to device…"
|
||||
|
||||
@ -1294,23 +1301,23 @@ msgstr "Communicate with the Hanvon N520 eBook reader."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Communicate with the Elonex EB 511 eBook reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1391,7 +1398,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1418,11 +1425,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Communicate with the Amazon Kindle DX eBook reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2146,7 +2153,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4837,7 +4844,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5094,12 +5101,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5695,79 +5702,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7367,25 +7374,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11328,12 +11335,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11436,7 +11443,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13196,7 +13203,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13850,20 +13857,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15105,7 +15112,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15113,34 +15132,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15378,129 +15397,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19338,3 +19357,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,16 +7,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-25 10:57+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-12 05:31+0000\n"
|
||||
"Last-Translator: Vibhav Pant <vibhavp@gmail.com>\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:52+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-12 05:39+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Does absolutely nothing"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Does absolutely nothing"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Does absolutely nothing"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Does absolutely nothing"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -990,7 +990,7 @@ msgstr "Communicate with S60 phones."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Communicate with WebOS tablets."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1010,31 +1010,31 @@ msgstr ""
|
||||
"iTunes</em> menu item.</p><p>Enabling the Apple driver for direct connection "
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Disable Apple driver"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Enable Apple driver"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Use Series as Category in iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Cache covers from iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "Enable to cache and display covers from iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1043,7 +1043,7 @@ msgstr ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1055,19 +1055,19 @@ msgstr ""
|
||||
"your Calibre configuration directory.</p><p>Enabling indicates that iTunes "
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple device"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Communicate with iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1075,29 +1075,39 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Updating device metadata listing..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d of %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "finished"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1107,7 +1117,7 @@ msgstr ""
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1115,7 +1125,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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1135,7 +1145,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "News"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1143,7 +1153,7 @@ msgstr "News"
|
||||
msgid "Catalog"
|
||||
msgstr "Catalogue"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Communicate with iTunes."
|
||||
|
||||
@ -1222,12 +1232,12 @@ msgstr "Adding books to device metadata listing..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Removing books from device..."
|
||||
|
||||
@ -1235,13 +1245,13 @@ msgstr "Removing books from device..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Removing books from device metadata listing..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Sending metadata to device..."
|
||||
|
||||
@ -1363,23 +1373,23 @@ msgstr "Communicate with the Hanvon N520 eBook reader."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Communicate with The Book reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Communicate with the Libre Air reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Communicate with the SpringDesign Alex eBook reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Communicate with the Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Communicate with the Elonex EB 511 eBook reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr "Communicate with the Cybook Odyssey eBook reader."
|
||||
|
||||
@ -1460,8 +1470,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1495,11 +1505,11 @@ msgstr ""
|
||||
"book. However, this method is slower and will slow down sending files to the "
|
||||
"Kindle."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Communicate with the Kindle DX eBook reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Communicate with the Kindle Fire"
|
||||
|
||||
@ -1543,10 +1553,13 @@ msgid ""
|
||||
"With this option Calibre will show the expired records and allow you to "
|
||||
"delete them with the new delete logic."
|
||||
msgstr ""
|
||||
"A bug in an earlier version left non kepubs book records in the database. "
|
||||
"With this option Calibre will show the expired records and allow you to "
|
||||
"delete them with the new delete logic."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:70
|
||||
msgid "Show Previews"
|
||||
msgstr ""
|
||||
msgstr "Show Previews"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:71
|
||||
msgid ""
|
||||
@ -1554,10 +1567,13 @@ msgid ""
|
||||
"they are no longer displayed as there is no good reason to see them. Enable "
|
||||
"if you wish to see/delete them."
|
||||
msgstr ""
|
||||
"Kobo previews are included on the Touch and some other versions by default "
|
||||
"they are no longer displayed as there is no good reason to see them. Enable "
|
||||
"if you wish to see/delete them."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:74
|
||||
msgid "Show Recommendations"
|
||||
msgstr ""
|
||||
msgstr "Show Recommendations"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:75
|
||||
msgid ""
|
||||
@ -1565,6 +1581,9 @@ msgid ""
|
||||
"but in other cases they are just pointers to the web site to buy. Enable if "
|
||||
"you wish to see/delete them."
|
||||
msgstr ""
|
||||
"Kobo now shows recommendations on the device. In some case these have files "
|
||||
"but in other cases they are just pointers to the web site to buy. Enable if "
|
||||
"you wish to see/delete them."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:596
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:381
|
||||
@ -2317,7 +2336,7 @@ msgstr ""
|
||||
"%(dis)s options."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr "Modify the document text and structure using user defined patterns."
|
||||
|
||||
@ -3165,6 +3184,13 @@ msgid ""
|
||||
"\"Table of Contents\" settings (turn on \"Force use of auto-generated Table "
|
||||
"of Contents\")."
|
||||
msgstr ""
|
||||
"Specify the sectionization of elements. A value of \"nothing\" turns the "
|
||||
"book into a single section. A value of \"files\" turns each file into a "
|
||||
"separate section; use this if your device is having trouble. A value of "
|
||||
"\"Table of Contents\" turns the entries in the Table of Contents into titles "
|
||||
"and creates sections; if it fails, adjust the \"Structure Detection\" and/or "
|
||||
"\"Table of Contents\" settings (turn on \"Force use of auto-generated Table "
|
||||
"of Contents\")."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/output.py:158
|
||||
#, python-format
|
||||
@ -3207,6 +3233,10 @@ msgid ""
|
||||
"can result in various nasty side effects in the rest of the conversion "
|
||||
"pipeline."
|
||||
msgstr ""
|
||||
"Normally this input plugin re-arranges all the input files into a standard "
|
||||
"folder hierarchy. Only use this option if you know what you are doing as it "
|
||||
"can result in various nasty side effects in the rest of the conversion "
|
||||
"pipeline."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/html/output.py:32
|
||||
msgid "CSS file used for the output instead of the default file"
|
||||
@ -4443,6 +4473,8 @@ msgid ""
|
||||
"The size of the paper. This size will be overridden when a non default "
|
||||
"output profile is used. Default is letter. Choices are %s"
|
||||
msgstr ""
|
||||
"The size of the paper. This size will be overridden when a non default "
|
||||
"output profile is used. Default is letter. Choices are %s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/output.py:39
|
||||
msgid ""
|
||||
@ -4979,6 +5011,8 @@ msgid ""
|
||||
"Are you sure you want to add the same files to all %d books? If the format "
|
||||
"already exists for a book, it will be replaced."
|
||||
msgstr ""
|
||||
"Are you sure you want to add the same files to all %d books? If the format "
|
||||
"already exists for a book, it will be replaced."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:98
|
||||
msgid "Select book files"
|
||||
@ -5404,7 +5438,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Create a catalogue of the books in your calibre library"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Cannot convert"
|
||||
|
||||
@ -5677,12 +5711,12 @@ msgid "Connect/share"
|
||||
msgstr "Connect/share"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Stopping"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr "Stopping server. This could take up to a minute, please wait..."
|
||||
|
||||
@ -6330,37 +6364,37 @@ msgstr "%s has no available formats."
|
||||
msgid "Searching in"
|
||||
msgstr "Searching in"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Adding..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Searching in all sub-directories..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Path error"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "The specified directory could not be processed."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "No books"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "No books found"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "No permission"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
@ -6368,15 +6402,15 @@ msgstr ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"\"Show Details\" to see the list of such files."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Added"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Adding failed"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6384,11 +6418,11 @@ msgstr ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Duplicates found!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -6396,19 +6430,19 @@ msgstr ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Adding duplicates..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Saving..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "Collecting data, please wait..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Saved"
|
||||
|
||||
@ -8000,7 +8034,7 @@ msgstr "Preserve &aspect ratio of cover"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:58
|
||||
msgid "&Custom size:"
|
||||
msgstr ""
|
||||
msgstr "&Custom size:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/pml_output.py:14
|
||||
msgid "PMLZ Output"
|
||||
@ -8082,7 +8116,7 @@ msgstr "&Next"
|
||||
msgid "Preview"
|
||||
msgstr "Preview"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -8092,18 +8126,18 @@ msgstr ""
|
||||
"&\n"
|
||||
"Replace"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "&Search Regular Expression"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Invalid regular expression"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -8696,6 +8730,8 @@ msgid ""
|
||||
"There was a temporary error talking to the device. Please unplug and "
|
||||
"reconnect the device or reboot."
|
||||
msgstr ""
|
||||
"There was a temporary error talking to the device. Please unplug and "
|
||||
"reconnect the device or reboot."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:795
|
||||
msgid "Device: "
|
||||
@ -12382,12 +12418,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "LRF Viewer toolbar"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Next Page"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Previous Page"
|
||||
|
||||
@ -12494,7 +12530,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "Bad database location %r. calibre will now quit."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Corrupted database"
|
||||
|
||||
@ -14466,7 +14502,7 @@ msgstr ""
|
||||
"not be allowed set any more preferences, until you restart."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Restart needed"
|
||||
|
||||
@ -14853,7 +14889,7 @@ msgstr "Could not find any matching plugins"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:276
|
||||
msgid "files"
|
||||
msgstr ""
|
||||
msgstr "files"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:277
|
||||
msgid "Add plugin"
|
||||
@ -15230,20 +15266,20 @@ msgstr ""
|
||||
"Send to Device button. This setting can be overriden for individual devices "
|
||||
"by customising the device interface plugins in Preferences->Advanced->Plugins"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Failed to start content server"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Error log:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Access log:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "You need to restart the server for changes to take effect"
|
||||
|
||||
@ -16630,7 +16666,22 @@ msgstr ""
|
||||
"log will be available in the file: %s<p>The log will be displayed "
|
||||
"automatically."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -16641,23 +16692,23 @@ msgstr ""
|
||||
"try and rebuild it automatically? The rebuild may not be completely "
|
||||
"successful."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Conversion Error"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Recipe Disabled"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Failed</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "There are active jobs. Are you sure you want to quit?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -16667,11 +16718,11 @@ msgstr ""
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "Active jobs"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -16876,17 +16927,19 @@ msgstr "Maximum &view width:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:210
|
||||
msgid "Font &magnification step size:"
|
||||
msgstr ""
|
||||
msgstr "Font &magnification step size:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:211
|
||||
msgid ""
|
||||
"The amount by which the font size is increased/decreased\n"
|
||||
" when you click the font size larger/smaller buttons"
|
||||
msgstr ""
|
||||
"The amount by which the font size is increased/decreased\n"
|
||||
" when you click the font size larger/smaller buttons"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:213
|
||||
msgid "%"
|
||||
msgstr ""
|
||||
msgstr "%"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:214
|
||||
msgid "&General"
|
||||
@ -16918,17 +16971,17 @@ msgstr "User &Stylesheet"
|
||||
msgid "No results found for:"
|
||||
msgstr "No results found for:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Options to customise the ebook viewer"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Remember last used window size"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -16936,75 +16989,77 @@ msgstr ""
|
||||
"Set the user CSS stylesheet. This can be used to customise the look of all "
|
||||
"books."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Maximum width of the viewer window, in pixels."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr "Resize images larger than the viewer window to fit inside it"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Hyphenate text"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Default language for hyphenation rules"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "Save the current position in the document when quitting"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "Have the mouse wheel turn pages"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Font options"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "The serif font family"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "The sans-serif font family"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "The monospaced font family"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "The standard font size in px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "The monospaced font size in px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "The standard font type"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "Still editing"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
@ -17012,40 +17067,40 @@ msgstr ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "&Lookup in dictionary"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr "&Search for next occurrence"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Go to..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Next Section"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Previous Section"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Document Start"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Document End"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Section Start"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Section End"
|
||||
|
||||
@ -21850,3 +21905,14 @@ msgstr ""
|
||||
"example, from EPUB to EPUB, the original file is saved, so that in case the\n"
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent Calibre from saving the original file."
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 17:49+0000\n"
|
||||
"Last-Translator: Kalle Kniivilä <kalle@kniivila.net>\n"
|
||||
"Language-Team: Esperanto <eo@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:37+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:02+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Faras absolute nenion"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Faras absolute nenion"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Faras absolute nenion"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Faras absolute nenion"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -975,7 +975,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -987,38 +987,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1026,60 +1026,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1099,7 +1106,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1107,7 +1114,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1180,12 +1187,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1193,13 +1200,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1319,23 +1326,23 @@ msgstr "Komuniki kun la aparato Hanvon N520."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1416,7 +1423,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1443,11 +1450,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Komuniki kun la aparato Kindle DX."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2154,7 +2161,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4787,7 +4794,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5044,12 +5051,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5645,79 +5652,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7317,25 +7324,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11278,12 +11285,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11386,7 +11393,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13146,7 +13153,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13800,20 +13807,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15055,7 +15062,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15063,34 +15082,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15328,129 +15347,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19288,3 +19307,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -10,16 +10,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: es\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-02 10:47+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-06 12:10+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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-03 04:48+0000\n"
|
||||
"X-Generator: Launchpad (build 14616)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:13+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:527
|
||||
msgid ""
|
||||
@ -47,8 +47,8 @@ msgstr "No hace absolutamente nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -59,7 +59,7 @@ msgstr "No hace absolutamente nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -119,16 +119,16 @@ msgstr "No hace absolutamente nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -163,8 +163,8 @@ msgstr "No hace absolutamente nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -1019,7 +1019,7 @@ msgstr "Comunicar con teléfonos S60."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Comunicar con tabletas WebOS."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1042,34 +1042,34 @@ msgstr ""
|
||||
"dispositivos de Apple es una opción avanzada y sin soporte.</p>\r\n"
|
||||
"<p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Desactivar el controlador de Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Activar el controlador de Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Usar la serie como categoría en iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Actívelo para usar el nombre de la serie como género de iTunes o categoría "
|
||||
"de iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Guardar las portadas de iTunes/iBooks en caché"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
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:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1078,7 +1078,7 @@ msgstr ""
|
||||
"«Copiar en iTunes Media los ficheros %s» está activado en iTunes "
|
||||
"Preferencias|Avanzado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1092,20 +1092,20 @@ msgstr ""
|
||||
"<p>Si la activa, significa que iTunes está configurado para almacenar copias "
|
||||
"en la carpeta de iTunes Media.</p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Dispositivo Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Comunicarse con iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1114,29 +1114,39 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
"Modo de conexión directo no soportado. En "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 puede encontrar "
|
||||
"instrucciones sobre el uso de «Conectar a iTunes»"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Actualizando listado de meta datos..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d de %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "terminado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1146,7 +1156,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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1154,7 +1164,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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1174,7 +1184,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Noticias"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1182,7 +1192,7 @@ msgstr "Noticias"
|
||||
msgid "Catalog"
|
||||
msgstr "Catálogo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Comunicarse con iTunes."
|
||||
|
||||
@ -1263,12 +1273,12 @@ msgstr "Añadiendo libros al listado de metatados del dispositivo..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Eliminando libros del dispositivo..."
|
||||
|
||||
@ -1276,13 +1286,13 @@ msgstr "Eliminando libros del dispositivo..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Eliminando libros del listado de metatados del dispositivo..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Enviando metadatos al dispositivo..."
|
||||
|
||||
@ -1404,23 +1414,23 @@ msgstr "Comunicar con el lector Hanvon N520"
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Comunicarse con el lector The Book."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Comunicar con el lector Libre Air."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Comunicar con el lector Alex de SpringDesign."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Comunicarse con el Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Comunicarse con el lector Elonex EB 511"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr "Comunicar con el lector Cybook Odyssey."
|
||||
|
||||
@ -1501,8 +1511,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>Posición %(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Comuníquese con Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr "Comunicar con el lector Kindle 2/3/4/Touch."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1539,11 +1549,11 @@ msgstr ""
|
||||
"tendría el libro impreso. Sin embargo, este método es más lento y ralentiza "
|
||||
"el envío de ficheros al Kindle"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Comunicarse con el lector Kindle DX."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Comunicar con el Kindle Fire"
|
||||
|
||||
@ -2390,7 +2400,7 @@ msgstr ""
|
||||
"acciones individuales pueden desactivarse con las opciones %(dis)s."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
"Modificar el texto y la estructura del documento utilizando patrones "
|
||||
@ -5583,7 +5593,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Crear un catálogo de los libros en la biblioteca de calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "No se puede convertir"
|
||||
|
||||
@ -5858,12 +5868,12 @@ msgid "Connect/share"
|
||||
msgstr "Conectar/compartir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Deteniendo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
"Deteniendo el servidor, esto puede llevar hasta un minuto, haga el favor de "
|
||||
@ -6516,37 +6526,37 @@ msgstr "%s no tiene formatos disponibles."
|
||||
msgid "Searching in"
|
||||
msgstr "Buscando en"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Añadiendo..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Buscando en todos los subdirectorios..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Error en la ruta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "El directorio especificado no se puede procesar."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Sin libros"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "No se encontró ningún libro"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "No tiene permiso"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
@ -6554,15 +6564,15 @@ msgstr ""
|
||||
"No se pudieron añadir algunos ficheros porque no tiene permiso para acceder "
|
||||
"a ellos. Pulse en «Mostrar detalles» para ver una lista de dichos ficheros."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Añadido"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Fallo al añadir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6571,11 +6581,11 @@ msgstr ""
|
||||
"calibre y añadir los libros en grupos más pequeños, hasta que encuentre el "
|
||||
"libro que causa el problema."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "¡Se han encontrado duplicados!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -6583,19 +6593,19 @@ msgstr ""
|
||||
"Ya existen libros con el mismo titulo que los siguientes en la base de "
|
||||
"datos. ¿Añadirlos de todas formas?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Añadiendo duplicados"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Guardando..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "Recogiendo datos, espere por favor..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Guardado"
|
||||
|
||||
@ -8285,7 +8295,7 @@ msgstr "Siguie&nte"
|
||||
msgid "Preview"
|
||||
msgstr "Vista previa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -8295,18 +8305,18 @@ msgstr ""
|
||||
"y\n"
|
||||
"sustituir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "Bu&scar expresiones regulares"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Expresión regular no válida"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -12629,12 +12639,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "Barra de herramientas del visor de LRF"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Página siguiente"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Página anterior"
|
||||
|
||||
@ -12744,7 +12754,7 @@ msgstr ""
|
||||
"Ubicación de la base de datos %r errónea. calibre se cerrará a continuación."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Base de datos corrupta"
|
||||
|
||||
@ -14757,7 +14767,7 @@ msgstr ""
|
||||
"reinicio."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Se requiere reiniciar"
|
||||
|
||||
@ -15543,20 +15553,20 @@ msgstr ""
|
||||
"dispositivos individuales configurando los complementos de interfaz de "
|
||||
"dispositivo en Preferencias->Complementos"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Fallo al iniciar el servidor de contenidos"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Registro de errores:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Registro de accesos:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "Debe reiniciar el servidor para que los cambios tengan efecto"
|
||||
|
||||
@ -16948,7 +16958,22 @@ msgstr ""
|
||||
"registro de depuración estará disponible en el fichero: %s<p>El registro se "
|
||||
"mostrará automáticamente."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr "No se pudo iniciar el servidor de contenidos"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"No se pudo iniciar el servidor de contenidos. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -16959,23 +16984,23 @@ msgstr ""
|
||||
"calibre intente reconstruirla automáticamente? La reconstrucción puede no "
|
||||
"completarse correctamente."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Error de conversión"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Receta deshabilitada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Fallo</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "Hay tareas activas. ¿Está seguro de que quiere salir?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -16986,11 +17011,11 @@ msgstr ""
|
||||
"de datos en el dispositivo.<br>\n"
|
||||
" ¿Está seguro de que desea salir?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "Tareas activas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -17241,17 +17266,17 @@ msgstr "Usar &hoja de estilos"
|
||||
msgid "No results found for:"
|
||||
msgstr "No hay resultados para:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Opciones para personalizar el visor de libros electrónicos"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "&Recordar el último tamaño de ventana usado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -17259,40 +17284,40 @@ msgstr ""
|
||||
"Establecer los estilos CSS de usuario. Esto se usa para personalizar la "
|
||||
"apariencia de todos los libros."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Anchura máxima de la ventana del visor, en píxeles."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
"Redimensionar las imágenes mayores que la ventana del visor para que quepan "
|
||||
"en ella"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Dividir palabras"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Idioma predeterminado para las reglas de división de palabras"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "Guardar la posición actual en el documento al salir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "Hacer que la rueda del ratón sirva para pasar páginas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
"El tiempo, en segundos, para la animación de paso de página. El valor "
|
||||
"predeterminado es medio segundo."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
@ -17300,39 +17325,39 @@ msgstr ""
|
||||
"La proporción en que cambia el tamaño de letra cuando se pulsan los botones "
|
||||
"de tamaño de letra mayor o menor. Debe ser un número entre 0 y 1."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Opciones de tipo de letra"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "El tipo de letra serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "El tipo de letra sans-serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "El tipo de letra monoespaciada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "El tamaño de letra estándar en px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "El tamaño de letra monoespaciada en px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "El tipo de letra estándar"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "Aún en edición"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
@ -17340,40 +17365,40 @@ msgstr ""
|
||||
"Aún está modificando un atajo de teclado. Termine primero de hacerlo, "
|
||||
"pulsando fuera del cuadro de edición de atajos."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "&Localizar en el diccionario"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr "&Buscar ocurrencia siguiente"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Ir a..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Siguiente sección"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Sección anterior"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Inicio del documento"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Final del documento"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Inicio de la sección"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Final de la sección"
|
||||
|
||||
@ -22386,3 +22411,17 @@ msgstr ""
|
||||
"conversión no es buena, pueda ajustar las opciones y convertirlo otra\n"
|
||||
"vez. Poniendo «False» en esta opción se evita que calibre guarde el fichero\n"
|
||||
"original."
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr "Número mostrado de libros leídos recientemente"
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
"Al pulsar con el botón derecho en «Mostrar» aparece una lista de los libros\n"
|
||||
"leídos recientemente. Aquí puede especificar cuántos libros se mostrarán\n"
|
||||
"en la lista."
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-09-29 22:31+0000\n"
|
||||
"Last-Translator: viki <viki@kodune.net>\n"
|
||||
"Language-Team: Estonian <et@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:38+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:02+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Ei tee midagi"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Ei tee midagi"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Ei tee midagi"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Ei tee midagi"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -958,7 +958,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -970,38 +970,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1009,60 +1009,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1082,7 +1089,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1090,7 +1097,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1163,12 +1170,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1176,13 +1183,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1302,23 +1309,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1399,7 +1406,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1426,11 +1433,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2137,7 +2144,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4769,7 +4776,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5026,12 +5033,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5627,79 +5634,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7299,25 +7306,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11260,12 +11267,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11368,7 +11375,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13128,7 +13135,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13782,20 +13789,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15037,7 +15044,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15045,34 +15064,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15310,129 +15329,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19270,3 +19289,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-28 18:22+0000\n"
|
||||
"Last-Translator: gorkaazk <gorkaazkarate@euskalerria.org>\n"
|
||||
"Language-Team: http://librezale.org/wiki/Calibre\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:35+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 04:59+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
"Language: eu\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -29,8 +29,8 @@ msgstr "Ez du ezer egiten"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -41,7 +41,7 @@ msgstr "Ez du ezer egiten"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -101,16 +101,16 @@ msgstr "Ez du ezer egiten"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -145,8 +145,8 @@ msgstr "Ez du ezer egiten"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -1024,7 +1024,7 @@ msgstr "S60 telefonoekin komunikatu."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Komunikatu WebOS tablets enpresakoekin."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1036,34 +1036,34 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Desgaitu Apple kontrolatzailea"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Gaitu Apple kontrolatzailea"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
"Erabili liburu-sailak kategoriak izango balira bezala iTunes/iBooks horietan."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Gaitu liburu-sailaren izena erabiltzea iTunes genero bezala, iBooks "
|
||||
"kategoria bezala"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "iTunes/iBooks horietatik cache-azalak"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "Gaitu ikusi ahal izatea iTunes/iBooks horietako azalak"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1072,7 +1072,7 @@ msgstr ""
|
||||
"\"Kopiatu fitxategiak iTunes Media %s karpetara\" gaituta dago iTunes "
|
||||
"Preferences|Advanced horretan (iTunes Hobespenak/Aurreratua)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1080,21 +1080,21 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple markako gailua"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "iTunes/iBooks horiekin komunikatu."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1102,29 +1102,36 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Irakurgailuaren zerrendatze metadatuak eguneratzen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d %(tot)d horietatik"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "amaiturik"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1134,7 +1141,7 @@ msgstr ""
|
||||
"Ezabatu \"iBooks app\" erabiliz.\n"
|
||||
"Egin ezazu klik 'Zehaztasunak erakutsi' zerrenda ikusteko."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1142,7 +1149,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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1162,7 +1169,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Albisteak"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1170,7 +1177,7 @@ msgstr "Albisteak"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalogoa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Komunikatu iTunes horrekin ."
|
||||
|
||||
@ -1250,12 +1257,12 @@ msgstr "Gailuaren metadatu zerrendara liburuak gehitzen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Gailutik liburuak ezabatzen..."
|
||||
|
||||
@ -1263,13 +1270,13 @@ msgstr "Gailutik liburuak ezabatzen..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Gailuaren metadatu zerrendatik liburuak kentzen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Metadatuak gailura bidaltzen..."
|
||||
|
||||
@ -1391,23 +1398,23 @@ msgstr "Komunikatu \"Hanvon N520 eBook reader\" horrekin."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Komunikatu \"The Book reader\" horrekin."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Kontaktatu 'Libre Air reader'-reko horiekin."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Komunikatu \"SpringDesign Alex eBook reader\" horrekin."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Komunikatu \"Azabooka\" horrekin."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Komunikatu \"Elonex EB 511 eBook reader\" horrekin."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr "Jar zaitez kontaktuan Cybook Odyssey eBook reader horrekin."
|
||||
|
||||
@ -1493,8 +1500,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>Kokapena %(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Komunikatu \"Kindle 2/3 eBook reader\" enpresakoekin."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1531,11 +1538,11 @@ msgstr ""
|
||||
"dute paperezko edizioekin. Dena den, sistema hau motelagoa da eta sistema "
|
||||
"honekin Kindlera fitxategiak bidaltzeko denbora luzatuko da."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Komunikatu Kindle DX eBook irakurgailuarekin."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Kindle Fire-rekin komunikatu"
|
||||
|
||||
@ -2353,7 +2360,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr "Aldatu dokumentuaren testua eta estruktura patroi zehatzak erabiliz."
|
||||
|
||||
@ -5439,7 +5446,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Liburuen katalogoa sortu calibreko liburutegian"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Ezin da bihurtu"
|
||||
|
||||
@ -5707,12 +5714,12 @@ msgid "Connect/share"
|
||||
msgstr "Konektatu/Konpartitu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Gelditzen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -6335,51 +6342,51 @@ msgstr "%s-k ez du formatu eskuragarririk."
|
||||
msgid "Searching in"
|
||||
msgstr "Bilatzen hemen:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Gehitzen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Bilatzen azpi-direktorioetan..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Bide (Path) errore"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "Zehaztutako direktorioa ezin izan da prozesatu."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Libururik ez"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Ez da libururik aurkitu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Baimenik ez"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Gehituta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Gehiketak huts egin du"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6388,11 +6395,11 @@ msgstr ""
|
||||
"calibre berrabiarazten eta liburuak multzo txikiagoetan gehitzen; segi "
|
||||
"horrela problemak sortzen dituen liburua topatu arte."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Bikoiztutakoak aurkitu dira!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -6400,19 +6407,19 @@ msgstr ""
|
||||
"Dagoeneko datu basean badago izenburu berbera duen libururik. Hala eta "
|
||||
"guztiz ere, gehitu?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Bikoiztutakoak gehitzen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Gordetzen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "Datuak biltzen, itxaron mesedez..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Gordeta"
|
||||
|
||||
@ -8065,7 +8072,7 @@ msgstr "&Hurrengoa"
|
||||
msgid "Preview"
|
||||
msgstr "Aurrebista"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -8075,18 +8082,18 @@ msgstr ""
|
||||
"eta\n"
|
||||
"ordezkatu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "Adierazpen erregularrak bi&latu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Baliorik gabeko ohiko adierazpena"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -12191,12 +12198,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "LRF Ikustailearen tresna-barra"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Hurrengo orrialdea"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Aurreko orrialdea"
|
||||
|
||||
@ -12301,7 +12308,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "Datu basearen kokagune okerra %r. calibrek ez du alde egingo."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Datu base kutsatua"
|
||||
|
||||
@ -14166,7 +14173,7 @@ msgstr ""
|
||||
"berrabiarazi arte."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Berrabiarazi beharko"
|
||||
|
||||
@ -14883,20 +14890,20 @@ msgstr ""
|
||||
"utz daiteke zenbait irakurgailutan gailuaren interfazea pertsonalizatuz "
|
||||
"honela: Preferences->Advanced->Plugins (Aukerak>Aurreratua>Gehigarriak)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Huts egin du edukien zerbitzaria abiarazten"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Log errorea:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Sarbideko log:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "Zerbitzaria berrabiarazi egin behar aldaketak gauzatzeko"
|
||||
|
||||
@ -16178,7 +16185,19 @@ msgstr ""
|
||||
"hasiera araztailea erabilgarri egongo da honako fitxategian: %s<p>hori "
|
||||
"automatikoki erakutsiko da."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -16186,24 +16205,24 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Bihurketa akatsa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Formula desgaitua"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Huts egin du</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
"Oraintxe bertan lan batzuk egiten ari dira. Ziur zaude irten nahi duzula?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -16214,11 +16233,11 @@ msgstr ""
|
||||
"daiteke.<br>\n"
|
||||
" Ziur zaude? Benetan irten nahi duzu?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -16466,17 +16485,17 @@ msgstr "Erabiltzailearen &Estilo-orria"
|
||||
msgid "No results found for:"
|
||||
msgstr "Ez da emaitzik aurkitu honetarako:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Liburu elektronikoen irakurgailua pertsonalizatzeko aukerak"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Gogoratu erabilitako azken leiho tamaina"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -16484,118 +16503,118 @@ msgstr ""
|
||||
"Ezarri CSS (Cascading Style Sheets) estiloa. Hau liburu guztien itxura "
|
||||
"pertsonalizatzeko erabil daiteke."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Zabalera maximoa ikustaileko leihoan, pixeletan."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
"Ikustaileko leihoa baino handiagoak diren irudien neurriak aldatzen ditu, "
|
||||
"ikustaileko leihora doitzeko"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Gidoidun \" - \"hitzak dituen testua"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
"Lehenetsitako zein hizkuntzatako gidoiei buruzko arautegia dago ezarrita"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "Gorde dokumentuaren oraingo egoera alde egiterakoan"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "Saguaren gurpilak orriak biratzeko aukera"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
"Denbora, segundotan, orrialdeen biraren animazioa ikusteko. Lehenetsita "
|
||||
"dagoena, segundo erdia."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Letra-tipoaren aukerak"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "Serif letra-tipokoen familia"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "Sans-serif letra-tipokoen familia"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "Monospaced letra-tipokoen familia"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "Letra-tipo tamaina estandarra pixeletan"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "Monospaced letra-tipo tamaina pixeletan"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Letra-tipo estandarra"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "&Bilatu hiztegian"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Joan horra..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Hurrengo atala"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Aurreko atala"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Documentuaren hasiera"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Documentuaren bukaera"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Atalaren hasiera"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Atalaren amaiera"
|
||||
|
||||
@ -20833,3 +20852,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-16 21:35+0000\n"
|
||||
"Last-Translator: Nima Shayanfar <Unknown>\n"
|
||||
"Language-Team: Persian <fa@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:45+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:10+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "به هیچ عنوان کاری انجام نمیدهد"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "به هیچ عنوان کاری انجام نمیدهد"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "به هیچ عنوان کاری انجام نمیدهد"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "به هیچ عنوان کاری انجام نمیدهد"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -964,7 +964,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -976,38 +976,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1015,60 +1015,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1088,7 +1095,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1096,7 +1103,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1169,12 +1176,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1182,13 +1189,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1308,23 +1315,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1405,7 +1412,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1432,11 +1439,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2143,7 +2150,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4776,7 +4783,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5033,12 +5040,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5634,79 +5641,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7306,25 +7313,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11267,12 +11274,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11375,7 +11382,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13135,7 +13142,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13789,20 +13796,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15044,7 +15051,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15052,34 +15071,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15317,129 +15336,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19277,3 +19296,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-19 10:47+0000\n"
|
||||
"Last-Translator: Olli-Pekka Kurppa <Unknown>\n"
|
||||
"Language-Team: Finnish <fi@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:38+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:03+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Ei tee mitään"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Ei tee mitään"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Ei tee mitään"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Ei tee mitään"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -986,7 +986,7 @@ msgstr "Kommunikoi S60-puhelimien kanssa."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -998,38 +998,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Käytä Sarjaa kategoriana iTunesissa/iBooksissa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1037,47 +1037,54 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Kommunikoi iTunesin/iBooksin kanssa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Päivittää laitteen metatietolistausta..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "Valmis"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1087,7 +1094,7 @@ msgstr ""
|
||||
"Poista iBooks-sovelluksella.\n"
|
||||
"Valitse 'Näytä yksityiskohdat' nähdäksesi listan."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1095,7 +1102,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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1115,7 +1122,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Uutiset"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1123,7 +1130,7 @@ msgstr "Uutiset"
|
||||
msgid "Catalog"
|
||||
msgstr "Luettelo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommunikoi iTunesin kanssa."
|
||||
|
||||
@ -1197,12 +1204,12 @@ msgstr "Lisätään kirjoja laitteen metatietolistaan..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Poistetaan kirjoja laitteelta..."
|
||||
|
||||
@ -1210,13 +1217,13 @@ msgstr "Poistetaan kirjoja laitteelta..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Poistetaan kirjoja laitteen metatietolistasta..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Lähetetään metatietoja laitteelle..."
|
||||
|
||||
@ -1338,23 +1345,23 @@ msgstr "Kommunikoi Hanvon N520 -lukijan kanssa."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Kommunikoi The Book -lukijan kanssa."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Kommunikoi SpringDesign Alex eBook -lukijan kanssa."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Kommunikoi Azbookan kanssa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Kommunikoi Elonex EB 511 -lukijan kanssa."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1435,8 +1442,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "siirrä tietoa Kindle 2/3 eBook lukijan kanssa"
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1462,11 +1469,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Kommunikoi Kindle DX -lukijan kanssa."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2218,7 +2225,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4867,7 +4874,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5124,12 +5131,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5725,79 +5732,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7397,25 +7404,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11358,12 +11365,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11466,7 +11473,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13226,7 +13233,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13880,20 +13887,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15135,7 +15142,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15143,34 +15162,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15408,129 +15427,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19372,3 +19391,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 17:17+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Faroese <fo@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:38+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:02+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,16 +7,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre 0.4.22\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-01 09:14+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-09 19:20+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"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-02 04:59+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-10 05:20+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
"X-Poedit-Bookmarks: 1177,1104,-1,-1,-1,-1,-1,-1,-1,-1\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
|
||||
@ -30,8 +30,8 @@ msgstr "Ne fait strictement rien"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -42,7 +42,7 @@ msgstr "Ne fait strictement rien"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -102,16 +102,16 @@ msgstr "Ne fait strictement rien"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -146,8 +146,8 @@ msgstr "Ne fait strictement rien"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -1021,7 +1021,7 @@ msgstr "Communiquer avec les téléphones S60"
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Communique avec une tablette WebOS"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1043,35 +1043,35 @@ msgstr ""
|
||||
"driver Apple pour une connection directe aux iAppareils est une mode pour "
|
||||
"utilisateur avancé non supporté.</p><p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Désactiver le pilote de périphériques Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Activer le pilote de périphériques Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Utiliser Séries comme Catégorie dans iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Activer l'utilisation du nom des séries en tant que genre iTunes et "
|
||||
"catégorie iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Mettre en cache les couvertures provenant d'iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
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:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1080,7 +1080,7 @@ msgstr ""
|
||||
"\"Copier les fichiers vers le répertoire média d'iTunes %s\" est activé dans "
|
||||
"les préférences iTunes|Avancé"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1093,19 +1093,19 @@ msgstr ""
|
||||
"calibre.</p><p>L'activer indique qu'iTunes est configuré pour archiver les "
|
||||
"copies dans votre répertoire Média iTunes.</p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Appareil Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Communiquer avec iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1114,29 +1114,39 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
"Mode de connexion directe non supporté. Allez voir "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 pour des "
|
||||
"instructions sur la manière d'utiliser 'Connecter à iTunes'"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
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:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d sur %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "Terminé"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1146,7 +1156,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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1154,7 +1164,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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1174,7 +1184,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Informations"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1182,7 +1192,7 @@ msgstr "Informations"
|
||||
msgid "Catalog"
|
||||
msgstr "Catalogue"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Communiquer avec iTunes"
|
||||
|
||||
@ -1263,12 +1273,12 @@ msgstr "Ajoute les livres à liste des métadonnées de l'appareil..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Supprime les livres de l'appareil..."
|
||||
|
||||
@ -1276,13 +1286,13 @@ msgstr "Supprime les livres de l'appareil..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Supprime les livres de la liste des métadonnées de l'appareil..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Envoie les métadonnées vers l'appareil..."
|
||||
|
||||
@ -1404,23 +1414,23 @@ msgstr "Communiquer avec le lecteur d'ebook Hanvon N520."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Communiquer avec le lecteur The Book"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Communiquer avec le lecteur Libre Air"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Communiquer avec le lecteur d'ebook Alex de SpringDesign"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Communiquer avec l'Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Communiquer avec le lecteur d'ebook Elonex EB 511."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr "Communiquer avec la liseuse d'ebook de Cybook Odyssey"
|
||||
|
||||
@ -1501,8 +1511,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>Emplacement %(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Communiquer avec le lecteur d'ebooks Kindle 2/3"
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr "Communiquer avec les lecteurs d'eBook Kindle 2/3/4/Touch"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1538,11 +1548,11 @@ msgstr ""
|
||||
"livre imprimé. Cependant, cette méthode est plus lente et ralentira l'envoi "
|
||||
"des fichier vers le Kindle."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Communiquer avec le lecteur d'ebook Kindle DX."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Communiquer avec le Kindle Fire"
|
||||
|
||||
@ -2401,7 +2411,7 @@ msgstr ""
|
||||
"individuelles peuvent être désactivés grâce à l'option %(dis)s."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
"Modifier le texte et la structure du document en utilisant des modèles "
|
||||
@ -5628,7 +5638,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Créer un catalogue des livres de votre bibliothèque Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Conversion impossible"
|
||||
|
||||
@ -5907,12 +5917,12 @@ msgid "Connect/share"
|
||||
msgstr "Connecter/Partager"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Arrêt en cours"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
"Arrêt en cours du serveur, cela peut prendre plus d'une minute, veuillez "
|
||||
@ -6577,37 +6587,37 @@ msgstr "%s n'a pas de format disponible."
|
||||
msgid "Searching in"
|
||||
msgstr "Recherche dans"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Ajout..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Recherche dans tous les sous-répertoires..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Chemin de l'erreur"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "Le chemin spécifié ne peut pas être traité."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Aucun livre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Aucun livre trouvé"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Aucune permission"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
@ -6615,15 +6625,15 @@ msgstr ""
|
||||
"Impossible d'ajouter quelques fichiers car vous n'avez pas la permission d'y "
|
||||
"accéder. Cliquer Afficher Détails pour voir la liste de ces fichiers."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Ajouté"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "L'ajout a échoué"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6632,11 +6642,11 @@ msgstr ""
|
||||
"redémarrer Calibre et ajoutez les livres avec un incrément plus petit, "
|
||||
"jusqu'à ce que vous trouviez le livre problèmatique."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Des doublons ont été détectés !"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -6644,19 +6654,19 @@ msgstr ""
|
||||
"Des livres avec des titres identiques à ceux qui suivent existent déjà la "
|
||||
"base. Voulez-vous quand-même les ajouter ?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Ajoute les doublons..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Sauvegarde..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "Collecte des données, veuillez patienter..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Sauvegardé"
|
||||
|
||||
@ -8360,7 +8370,7 @@ msgstr "Suiva&nt"
|
||||
msgid "Preview"
|
||||
msgstr "Aperçu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -8370,18 +8380,18 @@ msgstr ""
|
||||
"&\n"
|
||||
"Remplacer"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "Rechercher Une Expression Régulière"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Expression régulière incorrecte"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -12769,12 +12779,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "Barre d'outil pour l'afficheur LRF"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Page suivante"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Page précédente"
|
||||
|
||||
@ -12887,7 +12897,7 @@ msgstr ""
|
||||
"fermer."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Base de données corrompue"
|
||||
|
||||
@ -14927,7 +14937,7 @@ msgstr ""
|
||||
"redémarrage."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Redémarrage nécessaire"
|
||||
|
||||
@ -15704,20 +15714,20 @@ msgstr ""
|
||||
"outrepassé pour des appareils individuellement en personnalisant le plug-in "
|
||||
"de l'interface de l'appareil dans Préférences->Avancé->Plugins"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "A échoué lors du démarrage du serveur de contenu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Journal d'erreur :"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Journal des accès :"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "Vous devez redémarrer le serveur pour appliquer les changements"
|
||||
|
||||
@ -17145,7 +17155,22 @@ msgstr ""
|
||||
"Calibre, le journal de débogage sera disponible dans le fichier : %s<p>Le "
|
||||
"journal sera affiché automatiquement."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr "Erreur lors du démarage du serveur de contenu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Impossible de démarrer le serveur de contenu. Erreur :\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -17156,23 +17181,23 @@ msgstr ""
|
||||
"vous que Calibre tente de la reconstruire automatiquement? Cette "
|
||||
"reconstruction peut partiellement échouer."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Erreur lors de la conversion"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Recette désactivée"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Échoué</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "Il y a des travaux actifs. Voulez-vous vraiment quitter?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -17183,11 +17208,11 @@ msgstr ""
|
||||
"l'appareil.<br>\n"
|
||||
" Êtes-vous sûr de vouloir quitter ?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "Travaux actifs"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -17438,17 +17463,17 @@ msgstr "&Feuille de style utilisateur"
|
||||
msgid "No results found for:"
|
||||
msgstr "Aucun résultat trouvé pour :"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Options pour personnalier l'afficheur d'ebook"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Se souvenir de la dernière taille de fenêtre utilisée"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -17456,41 +17481,41 @@ msgstr ""
|
||||
"Voir la feuille de style utilisateur CSS. Peut être utilisée pour "
|
||||
"personnaliser le visuel de tous les livres."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Largeur maximale de la fenêtre de l'afficheur, en pixels."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
"Redimensionner les images plus grandes que la fenêtre de l'afficheur pour "
|
||||
"qu'elles aient la bonne taille"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Texte avec césure"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Langue par défaut pour les règles de césure"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
"Sauver la position courante dans le document lors de l'arrêt de Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "Activer le tournage de pages à l'aide de la roulette de la souris"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
"Le temps, en secondes, pour la durée de la page d'animation lors du tournage "
|
||||
"de pages. Par défaut une demi-seconde."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
@ -17499,39 +17524,39 @@ msgstr ""
|
||||
"grande/plus petite police sont cliqués. Doit être un nombre compris entre 0 "
|
||||
"et 1."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Options de la police"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "La famille de police serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "La famille de police sans-serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "La famille de police monospace"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "La taille de police standard en px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "La taille de police monospace en px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Le type de police standard"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "Toujours en cours d'édition"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
@ -17540,40 +17565,40 @@ msgstr ""
|
||||
"opération en cliquant en dehors de la boite de dialogue d'édition de "
|
||||
"raccourci."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "&Rechercher dans le dictionnaire"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr "&Chercher la prochaine occurrence"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Aller vers..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Section suivante"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Section précédente"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Début du document"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Fin du document"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Début de la section"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Fin de la section"
|
||||
|
||||
@ -22447,3 +22472,17 @@ msgstr ""
|
||||
"d'une conversion médiocre, vous puissiez personnaliser les réglages et le "
|
||||
"convertir à nouveau. En mettant ceci\n"
|
||||
"à False vous pouvez empêcher Calibre de sauvegarder le fichier original."
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr "Nombre de livres récemment vu à afficher"
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
"Faire un click droit sur le bouton Afficher présente une liste des livres "
|
||||
"récemment affichés. Contrôler\n"
|
||||
"le nombre de livres affichés de cette manière ici."
|
||||
|
||||
@ -7,16 +7,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 16:19+0000\n"
|
||||
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-11 01:39+0000\n"
|
||||
"Last-Translator: Calidonia Hibernia <Unknown>\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:39+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-12 05:38+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
"Language: gl\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -29,8 +29,8 @@ msgstr "Non facer nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -41,7 +41,7 @@ msgstr "Non facer nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -101,16 +101,16 @@ msgstr "Non facer nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -145,8 +145,8 @@ msgstr "Non facer nada"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -252,11 +252,11 @@ msgstr "Preferencias"
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:613
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:41
|
||||
msgid "Store"
|
||||
msgstr ""
|
||||
msgstr "Tenda"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:617
|
||||
msgid "An ebook store."
|
||||
msgstr ""
|
||||
msgstr "Tenda ebook"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:20
|
||||
msgid ""
|
||||
@ -334,59 +334,60 @@ msgstr "Definir os metadatos a partir dos ficheiros %s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:729
|
||||
msgid "Add books to calibre or the connected device"
|
||||
msgstr ""
|
||||
msgstr "Engadir libros a Calibre ou ao dispositivo conectado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:734
|
||||
msgid "Fetch annotations from a connected Kindle (experimental)"
|
||||
msgstr ""
|
||||
msgstr "Obter as anotacións dun Kindle conectado (experimental)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:739
|
||||
msgid "Generate a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
msgstr "Xerar un catalogo dos libros na túa biblioteca Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:744
|
||||
msgid "Convert books to various ebook formats"
|
||||
msgstr ""
|
||||
msgstr "Converter libros a varios formatos de ebook"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:749
|
||||
msgid "Delete books from your calibre library or connected device"
|
||||
msgstr ""
|
||||
"Eliminar libros da túa biblioteca Calibre ou do dispositivo conectado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:754
|
||||
msgid "Edit the metadata of books in your calibre library"
|
||||
msgstr ""
|
||||
msgstr "Editar os metadatos dos libros na túa biblioteca Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:759
|
||||
msgid "Read books in your calibre library"
|
||||
msgstr ""
|
||||
msgstr "Ler libros na túa biblioteca Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:764
|
||||
msgid "Download news from the internet in ebook form"
|
||||
msgstr ""
|
||||
msgstr "Descarga as noticias de Internet en formato ebook"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:769
|
||||
msgid "Show a list of related books quickly"
|
||||
msgstr ""
|
||||
msgstr "Amosar unha lista rápida de libros relacionados"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:774
|
||||
msgid "Export books from your calibre library to the hard disk"
|
||||
msgstr ""
|
||||
msgstr "Exportra os libros da túa biblioteca Calibre ao disco duro"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:779
|
||||
msgid "Show book details in a separate popup"
|
||||
msgstr ""
|
||||
msgstr "Amosar os detalles do libro nunha nova xanela"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:784
|
||||
msgid "Restart calibre"
|
||||
msgstr ""
|
||||
msgstr "Reiniciar Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:789
|
||||
msgid "Open the folder that contains the book files in your calibre library"
|
||||
msgstr ""
|
||||
msgstr "Abrir o cartafol que contén os ebooks da túa biblioteca Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:795
|
||||
msgid "Send books to the connected device"
|
||||
msgstr ""
|
||||
msgstr "Enviar os libros ao dispositivo conectado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:800
|
||||
msgid ""
|
||||
@ -401,20 +402,21 @@ msgstr "Navegar polo manual de usuario do Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:811
|
||||
msgid "Customize calibre"
|
||||
msgstr ""
|
||||
msgstr "Personalizar calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:816
|
||||
msgid "Easily find books similar to the currently selected one"
|
||||
msgstr ""
|
||||
msgstr "Atopar facilmente libros semellantes ao seleccionado actualmente"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:821
|
||||
msgid ""
|
||||
"Switch between different calibre libraries and perform maintenance on them"
|
||||
msgstr ""
|
||||
"Trocar entre diferentes bibliotecas Calibre e xestionar o seu mantemento"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:827
|
||||
msgid "Copy books from the devce to your calibre library"
|
||||
msgstr ""
|
||||
msgstr "Copiar libros do dispositivo á túa biblioteca Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:832
|
||||
msgid "Edit the collections in which books are placed on your device"
|
||||
@ -422,11 +424,11 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:837
|
||||
msgid "Copy a book from one calibre library to another"
|
||||
msgstr ""
|
||||
msgstr "Copia un libro de unha biblioteca Calibre para outra"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:842
|
||||
msgid "Make small tweaks to epub files in your calibre library"
|
||||
msgstr ""
|
||||
msgstr "Facer pequenas trocos en ficheiros epub da túa biblioteca Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:847
|
||||
msgid ""
|
||||
@ -436,15 +438,15 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:853
|
||||
msgid "Choose a random book from your calibre library"
|
||||
msgstr ""
|
||||
msgstr "Escoller ao chou un libro da túa biblioteca Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:860
|
||||
msgid "Search for books from different book sellers"
|
||||
msgstr ""
|
||||
msgstr "Buscar libros en diversos vendedores"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:876
|
||||
msgid "Get new calibre plugins or update your existing ones"
|
||||
msgstr ""
|
||||
msgstr "Obter novos complementos de Calibre ou actualizar os existentes"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:895
|
||||
msgid "Look and Feel"
|
||||
@ -632,6 +634,7 @@ msgstr "Descarga de metadatos"
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1074
|
||||
msgid "Control how calibre downloads ebook metadata from the net"
|
||||
msgstr ""
|
||||
"Controlar o xeito en que Calibre descarga da rede os metadatos dos ebooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1079
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:278
|
||||
@ -652,11 +655,11 @@ msgstr "Axuste fino de como se comporta o Calibre en diversos contextos"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1102
|
||||
msgid "Keyboard"
|
||||
msgstr ""
|
||||
msgstr "Teclado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1108
|
||||
msgid "Customize the keyboard shortcuts used by calibre"
|
||||
msgstr ""
|
||||
msgstr "Personalizar os atallos de teclado usados por Calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/keyboard.py:110
|
||||
@ -699,7 +702,7 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:264
|
||||
#, python-format
|
||||
msgid "Convert ebooks to the %s format"
|
||||
msgstr ""
|
||||
msgstr "Converter ebooks ao formato %s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:48
|
||||
msgid "Input profile"
|
||||
@ -852,7 +855,7 @@ msgstr "Este perfil é o propio o Amazon Kindle DX."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:659
|
||||
msgid "This profile is intended for the Amazon Kindle Fire."
|
||||
msgstr ""
|
||||
msgstr "Este perfil está disposto para o Amazon Kindle Fire."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:722
|
||||
msgid "This profile is intended for the B&N Nook Color."
|
||||
@ -866,6 +869,7 @@ msgstr "Este perfil está pensado para o Sandra Bambook."
|
||||
msgid ""
|
||||
"This profile is intended for the PocketBook Pro 900 series of devices."
|
||||
msgstr ""
|
||||
"Este perfil está disposto para os dispositivos da serie PocketBook Pro 900."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/ui.py:31
|
||||
msgid "Installed plugins"
|
||||
@ -945,6 +949,7 @@ msgstr "Desactivar o engadido sinalado"
|
||||
#, python-format
|
||||
msgid "Path to library too long. Must be less than %d characters."
|
||||
msgstr ""
|
||||
"Percorrido da biblioteca demasiado longo. Debe conter menos de %d caracteres."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:139
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/book/base.py:649
|
||||
@ -995,9 +1000,9 @@ msgstr "Comunicar con teléfonos S60"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:245
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
msgstr "Comunicarse coas tablets WebOs."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1021,62 +1026,69 @@ msgstr ""
|
||||
"técnica.</p>\r\n"
|
||||
"<p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Desactivar o controlador de Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Activar o controlador de Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Usar Serie como categoría en iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Actíveo para usar o nome da serie como xénero de iTunes ou categoría de "
|
||||
"iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Gardar as cubertas de iTunes/iBooks en caché"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
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:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
"\"Copiar ficheiros ao cartafol multimedia de iTunes %s\" está activado na "
|
||||
"Configuración Avanzada de iTunes"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
"your calibre configuration directory.</p><p>Enabling indicates that iTunes "
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
"<p>Esta configuración debe coincidir coa das <i>Preferencias Avanzadas</i> "
|
||||
"do iTunes.</p><p>Desactivándoa gardaranse copias dos libros transferidos ao "
|
||||
"iTunes no teu cartafol de configuración de Calibre.</p><p>Activándoa "
|
||||
"indicarase que iTunes está configurado para almacenar copias no teu cartafol "
|
||||
"multimedia de iTunes.</p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Dispositivo Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Comunicar con iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
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:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1085,29 +1097,39 @@ 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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
"Modo de conexión directa non soportado. Ver "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 para instrucións "
|
||||
"sobre como usar 'Conectarse co iTunes'"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Actualizando a relación de metadatos..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
msgstr "%(num)d de %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "rematado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1117,7 +1139,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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1125,7 +1147,7 @@ msgstr ""
|
||||
"Algunhas cubertas non se converteron. \n"
|
||||
"Prema «Amosar detalles» para relacionalas."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1145,7 +1167,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Noticias"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1153,7 +1175,7 @@ msgstr "Noticias"
|
||||
msgid "Catalog"
|
||||
msgstr "Catálogo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Comunicar con iTunes."
|
||||
|
||||
@ -1232,12 +1254,12 @@ msgstr "Engadindo libros á lista de metatados do dispositivo..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Retirando os libros do dispositivo..."
|
||||
|
||||
@ -1245,13 +1267,13 @@ msgstr "Retirando os libros do dispositivo..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Retirando libros da lista de metatados do dispositivo..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Enviando metadatos ao dispositivo..."
|
||||
|
||||
@ -1277,11 +1299,11 @@ msgstr "Kovid Goyal"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:36
|
||||
msgid "Communicate with the Blackberry playbook."
|
||||
msgstr ""
|
||||
msgstr "Comunicarse co playbook Blackberry."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/boeye/driver.py:14
|
||||
msgid "Communicate with BOEYE BEX Serial eBook readers."
|
||||
msgstr ""
|
||||
msgstr "Comunicarse cos lectores de ebooks da serie Boeye Bex"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/boeye/driver.py:35
|
||||
msgid "Communicate with BOEYE BDX serial eBook readers."
|
||||
@ -1373,23 +1395,23 @@ msgstr "Comunicar co lector de libro electrónico Hanvon N520."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Comunicar co lector The Book."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Comunicar co lector SpringDesign Alex eBook."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Comunicar co Azbooka."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Comunicar co lector de libro electrónico Elonex EB 115"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1470,8 +1492,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Comunicar co lector Kindle 2/3 eBook."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1507,11 +1529,11 @@ msgstr ""
|
||||
"tería o libro impreso. Non obstante, este método é máis lento e ralentiza o "
|
||||
"envío de ficheiros ao Kindle"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Comunicar co lector Kindle DX"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2298,7 +2320,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
"Modificar o texto do documento e a estrutura usando patróns definidos."
|
||||
@ -5340,7 +5362,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Crear un catálogo dos libros na biblioteca de calibre"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Non é posíbel converter"
|
||||
|
||||
@ -5609,12 +5631,12 @@ msgid "Connect/share"
|
||||
msgstr "Conectar/compartir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Dentendo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr "Detendo o servidor, isto pode levar ata un minuto, agarde..."
|
||||
|
||||
@ -6234,51 +6256,51 @@ msgstr "%s non ten formatos dispoñíbeis"
|
||||
msgid "Searching in"
|
||||
msgstr "Buscando"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Engadindo..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Buscando en todos os cartafoles dependentes"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Erro na ruta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "Non se puido procesar o directorio especificado."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Sen libros"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Non se atoparon libros"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Permiso denegado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Engadido"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Produciuse un erro ao engadir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6287,11 +6309,11 @@ msgstr ""
|
||||
"reiniciar o Calibre e a engadir libros en grupos máis pequenos ata que atope "
|
||||
"o libro que causa o problema."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Atopáronse duplicados!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -6299,19 +6321,19 @@ msgstr ""
|
||||
"Xa existen libros co mesmo título que os seguintes na base de datos. Desexa "
|
||||
"engadilos de todos os xeito?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Engadindo os duplicados..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Gardando..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Gardado"
|
||||
|
||||
@ -7964,7 +7986,7 @@ msgstr "&Seguinte"
|
||||
msgid "Preview"
|
||||
msgstr "Previsualizar"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -7974,18 +7996,18 @@ msgstr ""
|
||||
"e\n"
|
||||
"substituír"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "Bu&scar expresións regulares"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Expresión regular incorrecta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -12226,12 +12248,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "Barra de ferramentas do visor de LRF"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Páxina seguinte"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Páxina anterior"
|
||||
|
||||
@ -12342,7 +12364,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "Localización da base de datos %r errada. Calibre pecharase a seguir."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "A base de datos está danada"
|
||||
|
||||
@ -14235,7 +14257,7 @@ msgstr ""
|
||||
"ata que a operación de reinicio conclúa."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Requírese reiniciar"
|
||||
|
||||
@ -14987,20 +15009,20 @@ msgstr ""
|
||||
"dispositivos individuais mediante a personalización dos engadidos da "
|
||||
"interface do dispositivo, en Preferencias->Avanzado->Engadidos"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Fallou ao iniciar o servidor de contido"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Rexistro de erros:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Rexistro de acceso:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "Debe reiniciar o servidor para que os cambios teñan efecto"
|
||||
|
||||
@ -16357,7 +16379,19 @@ msgstr ""
|
||||
"de depuración estará dispoñíbel no ficheiro: %s<p>O rexistro mostrarase "
|
||||
"automaticamente."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -16365,23 +16399,23 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Produciuse un erro de conversión"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Receita desactivada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Fallou</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "Hai traballos en activo. Está seguro de querer saír?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -16392,11 +16426,11 @@ msgstr ""
|
||||
"no dispositivo.<br>\n"
|
||||
" Está seguro de que desexa saír?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "Tareas activas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -16643,17 +16677,17 @@ msgstr "Usar &folla de estilos"
|
||||
msgid "No results found for:"
|
||||
msgstr "Non se atoparon resultados para:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Opcións para personalizar o visualizador de libros"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Lembrar o tamaño da última xanela usada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -16661,77 +16695,77 @@ msgstr ""
|
||||
"Estabelecer os estilos CSS de usuario. Isto empregase para personalizar a "
|
||||
"aparencia de todos os libros."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Largura máxima da xanela do visualizador, en píxels."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
"Redimensionar as imaxes maiores que a xanela do visor para que caiban nela."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Guionizar o texto"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Idioma predeterminado para o guionizado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "Guardar a posición actual no documento, ao saír"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "Que a roda do rato sirva para pasar páxinas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
"O tempo, en segundos, para a animación de paso de páxina. O valor "
|
||||
"predeterminado é medio segundo."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Opcións de tipo de letra"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "O tipo de letra serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "O tipo de letra sans-serif"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "O tipo de letra monoespazo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "O tamaño de letra estándar en px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "O tamaño de letra monoespazo en px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "O tipo de letra estándar"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "Aínda en edición"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
@ -16739,40 +16773,40 @@ msgstr ""
|
||||
"Aínda está modificando un atallo de teclado. Termine primeiro de facelo, "
|
||||
"pulsando fora do cadro de edición de atallos."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "&Buscar no dicionario"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Ir a..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Sección seguinte"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Sección anterior"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Inicio do documento"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Final do documento"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Inicio da sección"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Final da sección"
|
||||
|
||||
@ -21107,3 +21141,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-20 06:46+0000\n"
|
||||
"Last-Translator: Hasit Bhatt <hasit.p.bhatt@gmail.com>\n"
|
||||
"Language-Team: Gujarati <gu@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:39+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:04+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "કઈ પણ કરતું નથી"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "કઈ પણ કરતું નથી"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "કઈ પણ કરતું નથી"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "કઈ પણ કરતું નથી"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-11-02 16:40+0000\n"
|
||||
"Last-Translator: nachshon <Unknown>\n"
|
||||
"Language-Team: Hebrew <he@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:40+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:04+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "לא עושה דבר"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "לא עושה דבר"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "לא עושה דבר"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "לא עושה דבר"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -965,7 +965,7 @@ msgstr "תקשר עם סלולרי S60"
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -977,38 +977,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "הטמן (cache) תמונות שער מ-iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1016,19 +1016,19 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "התקן של אפל"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "תקשר עם אייטונס/אייבוקס"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "התגלתה חומרת 'אפל' (Apple). מתחיל את תוכנת iTunes, אנה חכה.."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1036,29 +1036,36 @@ msgstr ""
|
||||
"קליבר לא מצליח להעתיק ספרים ישירות מחומרת ה-iDevice. גרור מספריית ה-iTunes "
|
||||
"לשולחן העבודה. רק אז הוסף לחלון ספריית קליבר."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "מעדכן רישום נתוני מטא של החומרה"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "הסתיים"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
"הסר בעזרת אפליקציית ה-iBooks.\n"
|
||||
"לחץ על 'הצג פרטים' לקבלת רשימה."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
"לא היה אפשר להמיר חלק מתמונות השער.\n"
|
||||
"לחץ על 'הצג פרטים' לקבלת רשימה."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1096,7 +1103,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "חדשות"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1104,7 +1111,7 @@ msgstr "חדשות"
|
||||
msgid "Catalog"
|
||||
msgstr "קטלוג"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "תקשר עם אייטונס"
|
||||
|
||||
@ -1177,12 +1184,12 @@ msgstr "מוסיף ספרים לרשימת הספרים במכשיר"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "מסיר ספרים מהמכשיר"
|
||||
|
||||
@ -1190,13 +1197,13 @@ msgstr "מסיר ספרים מהמכשיר"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "מסיר ספרים מרשימת הספרים במכשיר"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "שולח מטא תגיות למכשיר"
|
||||
|
||||
@ -1318,23 +1325,23 @@ msgstr "מחליף נתונים עם Hanvon N520 eBook reader."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "תקשר עם קורא הספרים"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "מתקשר עם SpringDesign Alex eBook reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "מתקשר עם מכשיר Azbooka"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "מחליף נתונים עם Elonex EB 511 eBook reader."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1415,8 +1422,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "תקשר עם קורא הספרים קינדל 2/3"
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1442,11 +1449,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "תקשר עם קורא הספרים קינדל DX"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2159,7 +2166,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4798,7 +4805,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5055,12 +5062,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5656,79 +5663,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7328,25 +7335,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11289,12 +11296,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11397,7 +11404,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13157,7 +13164,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13811,20 +13818,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15066,7 +15073,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15074,34 +15093,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15339,129 +15358,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19304,3 +19323,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 16:01+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Hindi <hi@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:40+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:05+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "कुछ भी नहीं करता"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "कुछ भी नहीं करता"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "कुछ भी नहीं करता"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "कुछ भी नहीं करता"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 17:51+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Croatian <hr@li.org>\n"
|
||||
@ -16,8 +16,8 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:47+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:12+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -29,8 +29,8 @@ msgstr "Uopće ne funkcionira"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -41,7 +41,7 @@ msgstr "Uopće ne funkcionira"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -101,16 +101,16 @@ msgstr "Uopće ne funkcionira"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -145,8 +145,8 @@ msgstr "Uopće ne funkcionira"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -968,7 +968,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -980,38 +980,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1019,60 +1019,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "završeno"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1092,7 +1099,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Vijesti"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1100,7 +1107,7 @@ msgstr "Vijesti"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1173,12 +1180,12 @@ msgstr "Dodavanje knjiga u popis metapodataka uređaja..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Uklanjanje knjiga sa uređaja..."
|
||||
|
||||
@ -1186,13 +1193,13 @@ msgstr "Uklanjanje knjiga sa uređaja..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Uklanjanje knjiga iz popisa metapodataka uređaja..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Slanje metapodataka na uređaj..."
|
||||
|
||||
@ -1312,23 +1319,23 @@ msgstr "Komuniciraj sa Hanvon N520 eBook čitačem."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1409,7 +1416,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1436,11 +1443,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Komuniciraj sa Kindle DX eBook čitačem"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2191,7 +2198,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -5023,7 +5030,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Nemoguće pretvoriti"
|
||||
|
||||
@ -5280,12 +5287,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5885,51 +5892,51 @@ msgstr "%s nema raspoložive formate."
|
||||
msgid "Searching in"
|
||||
msgstr "Pretraživanje u"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Dodavanje..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Pretraživanje u svim pod-direktorijima..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Greška u putu"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "Specificirani direktorij nije mogao biti procesiran."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Nema knjiga"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Nema pronađenih knjiga"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Bez dozvole"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Dodano"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Neuspjelo dodavanje"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -5937,11 +5944,11 @@ msgstr ""
|
||||
"Proces dodavanja knjiga je zaustavljen. Probajte ponovo pokrenuti calibre i "
|
||||
"dodavati knjige u manjim količinama dok ne pronađete problematičnu knjigu."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Pronađeni duplikati!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
@ -5949,19 +5956,19 @@ msgstr ""
|
||||
"Knjige sa naslovom identičnim slijedećim već postoje u bazi podataka. Dodaj "
|
||||
"ih, bez obzira?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Dodavanje duplikata..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Spremanje..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Spremljeno"
|
||||
|
||||
@ -7577,25 +7584,25 @@ msgstr "&Slijedeći"
|
||||
msgid "Preview"
|
||||
msgstr "Pregled"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Nevažeći regularni izraz"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11578,12 +11585,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "Alatna Traka LRF Preglednika"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Slijedeća Stranica"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Prethodna Stranica"
|
||||
|
||||
@ -11686,7 +11693,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13458,7 +13465,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -14125,20 +14132,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "Neuspješan start sadržajnog poslužitelja"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Dnevnik grešaka:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Dnevnik pristupa:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15389,7 +15396,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15397,23 +15416,23 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Greška u Pretvorbi"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Recept Onesposobljen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Neuspjelo</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "Imate aktivne poslove. Jeste li sigurni da hoćete prekinuti?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -15423,11 +15442,11 @@ msgstr ""
|
||||
" Prekid može prouzrokovati korupciju uređaja.<br>\n"
|
||||
" Jeste li sigurni da hoćete da prekinete?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15669,17 +15688,17 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr "Nema pronađenih rezultata za:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "Opcije za prilagodbu preglednika elektroničke knjige"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Zapamti zadnju korištenu veličinu zaslona"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -15687,113 +15706,113 @@ msgstr ""
|
||||
"Postavite korisničku CSS formatnu listu. Ovo može biti upotrijebljeno za "
|
||||
"prilagođavanje izgleda svih knjiga."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Maksimalna širina korisničkog prozora, u pikselima."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Spoji tekst crticom"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Zadani jezik za pravila spajanja crtiom"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Opcije pisma"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "Serif familija pisma"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "Sans-serif familija pisma"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "Monospace familija pisma"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "Standardna veličina pisma u px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "Monospace veličina pisma u px"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Standardna vrsta pisma"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "&Pogledaj u rječniku"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Idi na..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19776,3 +19795,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,16 +7,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-02 19:31+0000\n"
|
||||
"Last-Translator: Richard Somlói <ricsipontaz@gmail.com>\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-08 19:40+0000\n"
|
||||
"Last-Translator: Péter Trombitás <trombipeti@gmail.com>\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-03 04:47+0000\n"
|
||||
"X-Generator: Launchpad (build 14616)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-09 04:48+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Semmit sem csinál"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Semmit sem csinál"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Semmit sem csinál"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Semmit sem csinál"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -994,7 +994,7 @@ msgstr "Kommunikáció S60-as telefonnal."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "Kommunikáció WebOS táblagépekkel."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -1016,32 +1016,32 @@ msgstr ""
|
||||
"elem.</p><p>Az Apple meghajtó engedélyezése a közvetlen kommunikációhoz az "
|
||||
"iDevice-al egy nem támogatott haladó felhasználói mód.</p><p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Apple meghajtó kikapcsolása"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Apple meghajtó bekapcsolása"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "Sorozatok használata Kategóriaként az iTunes/iBooks-ban"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
"Engedélyezze, hogy a sorozat neve legyen az iTunes műfaj, iBooks kategória"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "Borítók gyorstárazása az iTunes/iBooks-ból"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "Engedélyezze a iTunes/iBooks borítók gyorsítótárazásához"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1050,7 +1050,7 @@ msgstr ""
|
||||
"A „Copy files to iTunes Media folder %s” opció engedélyezve van az iTunes "
|
||||
"Preferences/Advanced menüjében"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1064,19 +1064,19 @@ msgstr ""
|
||||
"Bekapcsolásnál jelzi, hogy a könyv másolatát az iTunes -od Media "
|
||||
"könyvtárában tárolja."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple eszköz"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Kommunikáció iTunes/iBooks-szal."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Apple eszköz felismerve, az iTunes indul. Kérem várjon…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1084,29 +1084,39 @@ msgstr ""
|
||||
"Nem lehet a könyveket közvetlenül az iDevice-ról lemásolni. Húzza az iTunes "
|
||||
"könyvtárból az asztalra, majd adja a calibre könyvtár ablakához."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
"Nem támogatott közvetlen kapcsolódási mód. A "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 linken talál "
|
||||
"információkat az iTunes kapcsolat használatáról"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
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:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d/%(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "Kész"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1116,7 +1126,7 @@ msgstr ""
|
||||
"Törlés az iBooks alkalmazás segítségével.\n"
|
||||
"Kattintson a „Részletek” gombra a listához."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1124,7 +1134,7 @@ msgstr ""
|
||||
"Néhány borítót nem lehetett konvertálni.\n"
|
||||
"Kattintson a „Részletek megjelenítése” lehetőségre a listához."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1144,7 +1154,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Hírek (RSS)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1152,7 +1162,7 @@ msgstr "Hírek (RSS)"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalógus"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommunikáció iTunes-szal."
|
||||
|
||||
@ -1232,12 +1242,12 @@ msgstr "Könyvek hozzáadása az eszköz metaadat listájához…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Könyvek eltávolítása az eszközről…"
|
||||
|
||||
@ -1245,13 +1255,13 @@ msgstr "Könyvek eltávolítása az eszközről…"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "Könyvek eltávolítása az eszköz metaadat listájáról…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Metaadatok küldése az eszközre…"
|
||||
|
||||
@ -1373,23 +1383,23 @@ msgstr "A Hanvon N520 eBook olvasóval kommunikál."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "Kommunikáció The Book olvasóval."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Kommunikáció Libre Air olvasóval."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "Kommunikáció SpringDesign Alex eBook olvasóval."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Kommunikáció Azbooka-val"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Kommunikáció Elonex EB 511 eBook olvasóval."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr "Kommunikáció a Cybook Odyssey olvasóval."
|
||||
|
||||
@ -1470,8 +1480,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>Hely %(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Kommunikáció Kindle 2/3 eBook olvasóval."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr "Kapcsolódás a Kindle 2/3/4/Touch eBook olvasóhoz."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1505,11 +1515,11 @@ msgstr ""
|
||||
"nyomtatott verzióhoz jobban illeszkedő számozást készít, de ez a módszer "
|
||||
"lassabb, és lassítja a fájlok Kindle felé küldését."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Kommunikáció Kindle DX eBook olvasóval."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Kommunikáció a Kindle Fire-rel"
|
||||
|
||||
@ -2335,7 +2345,7 @@ msgstr ""
|
||||
"letiltáshoz ezt: %(dis)s."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
"A dokumentum szövegének és felépítésének módosítása felhasználó által "
|
||||
@ -4483,6 +4493,8 @@ msgid ""
|
||||
"The size of the paper. This size will be overridden when a non default "
|
||||
"output profile is used. Default is letter. Choices are %s"
|
||||
msgstr ""
|
||||
"Kimeneti papírméret. Ezt a nem alapértelmezett kimeneti profil felülbírálja. "
|
||||
"Az alapértelmezett a „letter”. További lehetőségek: %s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/output.py:39
|
||||
msgid ""
|
||||
@ -5453,7 +5465,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "Katalógus készítése a calibre könyvtárban lévő könyvekről"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Nem lehet konvertálni"
|
||||
|
||||
@ -5701,7 +5713,7 @@ msgstr "Tartalomkiszolgáló leállítása"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:90
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:109
|
||||
msgid "Email to"
|
||||
msgstr "E-mail küldése"
|
||||
msgstr "E-mail küldése ide:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:94
|
||||
msgid "Email to and delete from library"
|
||||
@ -5728,12 +5740,12 @@ msgid "Connect/share"
|
||||
msgstr "Kapcsolat/megosztás"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "Leállítás"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr "Kiszolgáló leállítása, ez egy percig is eltarthat, kérjük várjon…"
|
||||
|
||||
@ -6379,37 +6391,37 @@ msgstr "Nincs elérhető formátum a következőhöz: %s"
|
||||
msgid "Searching in"
|
||||
msgstr "Keresés a következőben:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Hozzáadás…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "Keresés minden almappában…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "Elérési útvonal hiba"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "A megadott mappát nem lehet használni."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "Nincsenek könyvek"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "Nem talált könyveket."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "Nincs jogosultság"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
@ -6417,15 +6429,15 @@ msgstr ""
|
||||
"Néhány fájlt nem sikerült hozzáadni, mert nincs hozzáférési jogosultsága. "
|
||||
"További információkért kattintson a „Részletek” gombra."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Hozzáadva"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "A hozzáadás nem sikerült"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
@ -6434,30 +6446,30 @@ msgstr ""
|
||||
"kisebb részletekben adja hozzá a könyveket, amíg meg nem találja a problémát "
|
||||
"okozót."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Már létezik egy ilyen példány!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
"Ugyanezzel a címmel már létezik egy könyv az adatbázisban. Mégis hozzáadja?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "Duplikációk hozzáadása…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Mentés…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "Adatok gyűjtése, kérem várjon…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Elmentve"
|
||||
|
||||
@ -8139,7 +8151,7 @@ msgstr "&Következő"
|
||||
msgid "Preview"
|
||||
msgstr "Előnézet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -8149,18 +8161,18 @@ msgstr ""
|
||||
"és\n"
|
||||
"Csere"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "Kere&ső reguláris kifejezés"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "Érvénytelen reguláris kifejezés"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -8755,6 +8767,8 @@ msgid ""
|
||||
"There was a temporary error talking to the device. Please unplug and "
|
||||
"reconnect the device or reboot."
|
||||
msgstr ""
|
||||
"Probléma az eszközkapcsolatban. Válassza le, majd csatlakoztassa ismét, "
|
||||
"szükség esetén indítsa újra az eszközt."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:795
|
||||
msgid "Device: "
|
||||
@ -11896,7 +11910,7 @@ msgstr "%s formátumban."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/email.py:217
|
||||
msgid "Sending email to"
|
||||
msgstr "E-mail küldése:"
|
||||
msgstr "E-mail küldése ide:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/email.py:248
|
||||
msgid "Auto convert the following books before sending via email?"
|
||||
@ -12484,12 +12498,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "LRF olvasó eszköztár"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Következő oldal"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Előző oldal"
|
||||
|
||||
@ -12597,7 +12611,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "Hibás adatbázishely: %r. A calibre bezáródik."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "Hibás adatbázis"
|
||||
|
||||
@ -14606,7 +14620,7 @@ msgstr ""
|
||||
"igénylik. Az újraindítás előtt más beállítás már nem lehetséges."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "Újraindítás szükséges"
|
||||
|
||||
@ -15383,20 +15397,20 @@ msgstr ""
|
||||
"kattint. Ez a beállítás felülbírálható az egyes eszközöknek megfelelő "
|
||||
"specifikus adatokkal a Beállítások->Haladó->Bővítmények menüben."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "A kiszolgáló indítása nem sikerült"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Hibanapló:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "Hozzáférési naplófájl:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "A változások életbelépéséhez újra kell indítani a kiszolgálót"
|
||||
|
||||
@ -16789,7 +16803,22 @@ msgstr ""
|
||||
"hibanapló elérhető a következő helyen: %s<p>A hibanapló automatikusan "
|
||||
"megjelenik."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Nem sikerült elindítani a tartalom-kiszolgálót. Hibakód:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -16800,23 +16829,23 @@ msgstr ""
|
||||
"calibre megkísérelje annak automatikus helyreállítását? Az adatbázis "
|
||||
"újraépítése nem biztos, hogy sikerülni fog."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "Konvertálási hiba"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "Hírösszeállítás letiltva"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>Nem sikerült</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "Folyamatban van néhány művelet végrehajtása. Megszakítja?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -16826,11 +16855,11 @@ msgstr ""
|
||||
" A kilépés adatvesztést okozhat az eszközön.<br>\n"
|
||||
" Biztos, hogy ki akarsz lépni??"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "Folyamatban lévő műveletek"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -17038,13 +17067,15 @@ msgstr "Maximális ablakszélesség"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:210
|
||||
msgid "Font &magnification step size:"
|
||||
msgstr ""
|
||||
msgstr "Betűnagyítás léptéke:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:211
|
||||
msgid ""
|
||||
"The amount by which the font size is increased/decreased\n"
|
||||
" when you click the font size larger/smaller buttons"
|
||||
msgstr ""
|
||||
"Ekkora léptékben változik a betűméret, amikor a\n"
|
||||
"„Betűméret változtatása nagyobbra/kisebbre” gombokra kattint"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:213
|
||||
msgid "%"
|
||||
@ -17080,17 +17111,17 @@ msgstr "Felhasználói stíluslap"
|
||||
msgid "No results found for:"
|
||||
msgstr "Nincs találat a következőre:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "E-book olvasó beállítása"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "Az utoljára használt ablakméret megjegyzése"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
@ -17098,76 +17129,78 @@ msgstr ""
|
||||
"A felhasználói CSS stíluslap beállítása. Ez használható a könyvek "
|
||||
"megjelenítésének testreszabásához"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "Az olvasóprogram ablakának maximális szélessége képpontban."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
"Az megjelenítő ablaknál nagyobb képek átméretezése, hogy illeszkedjenek"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "Szöveg elválasztás"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "Az elválasztási szabályok nyelve"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "Az aktuális pozíció mentése kilépéskor"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "Az egér görgetőgomb lapozzon"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
"A lapozási animáció időtartama másodpercben. Alapérték: 0,5 másodperc"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
"Ekkora léptékben változik a betűméret, amikor a „Betűméret változtatása "
|
||||
"nagyobbra/kisebbre” gombokra kattint. Egy 0 és 1 közötti szám."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "Betűbeállítások"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "Serif (talpas) betűkészlet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "Sans-serif ('talp nélküli') betűkészlet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "Monospace (rögzített szélességű) betűkészlet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "Az alap betűméret pixelben"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "Monospace (rögzített szélességű) betűméret pixelben"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "Alap betűtípus"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "Szerkesztés folyamatban"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
@ -17175,40 +17208,40 @@ msgstr ""
|
||||
"A gyorsbillentyűk szerkesztése jelenleg is folyik. A szerkesztőablakon "
|
||||
"kívülre kattintva befejezheti a szerkesztést."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "Keresés szótárban"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr "A &következő előfordulás keresése"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "Ugrás…"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Következő szakasz"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "Előző szakasz"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "Dokumentum eleje"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "Dokumentum vége"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "Szakasz eleje"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "Szakasz vége"
|
||||
|
||||
@ -20215,6 +20248,24 @@ msgid ""
|
||||
"\"B.C\". Assuming a #genre value of \"A.B.C, D.E.F\", {#genre:subitems(0,1)} "
|
||||
"returns \"A, D\". {#genre:subitems(0,2)} returns \"A.B, D.E\""
|
||||
msgstr ""
|
||||
"subtitems(lista, kezdő_index, vég_index) – ez a függvény olyan „lista” "
|
||||
"elemeinek részeiből nyer ki információkat, mint például a „Műfaj”. A „lista” "
|
||||
"elemei vesszővel vannak elválasztva, az egyes elemek pedig ponttal tagolt "
|
||||
"listák tulajdonképpen. A visszatérési érték egy új lista, ami tartalmazza az "
|
||||
"összes elemet, viszont az elemből a „kezdő_index”-től a „vég_index”-ig "
|
||||
"tartó, pontokkal tagolt listarészt adja vissza. A pontokkal tagolt lista "
|
||||
"első elemének indexe 0. Ha egy index negatív, akkor az a lista utolsó "
|
||||
"elemére utal, ha pedig a „vég_index” értéke 0, akkor a lista hosszát "
|
||||
"jelenti.\r\n"
|
||||
"1. példa: #genre – mező, „A.B.C” – mező érték\r\n"
|
||||
"{#genre:subitems(0,1)} visszatérési értéke 'A'\r\n"
|
||||
"{#genre:subitems(0,2)} visszatérési értéke 'A.B'\r\n"
|
||||
"{#genre:subitems(1,0)} visszatérési értéke 'B.C'\r\n"
|
||||
"\r\n"
|
||||
"\r\n"
|
||||
"2. példa: #genre – mező, „A.B.C”, „D.E.F” – mező értékek\r\n"
|
||||
"{#genre:subitems(0,1)} visszatérési értéke 'A, D'\r\n"
|
||||
"{#genre:subitems(0,2)} visszatérési értéke 'A.B, D.E'"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:743
|
||||
msgid ""
|
||||
@ -20311,6 +20362,8 @@ msgid ""
|
||||
"empty. If all values are empty, then the empty value is returned. You can "
|
||||
"have as many values as you want."
|
||||
msgstr ""
|
||||
"first_non_empty(érték, érték, …) – az argumentumként megadott „érték”-ek "
|
||||
"közül az első nem üres „érték”-et adja vissza. Bármennyi argumentuma lehet."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:871
|
||||
msgid ""
|
||||
@ -20716,6 +20769,8 @@ msgid ""
|
||||
"Interpreter dies while executing a command. To see the command, click Show "
|
||||
"details"
|
||||
msgstr ""
|
||||
"Az értelmező leállt a parancs végrehajtása közben. További információkért "
|
||||
"kattintson a „Részletek megjelenítésé”-re"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/pyconsole/main.py:20
|
||||
msgid "Welcome to"
|
||||
@ -21697,6 +21752,78 @@ msgid ""
|
||||
"sony_collection_renaming_rules={'series':'Series', 'tags':'Tag'}\n"
|
||||
"sony_collection_name_template='{category:||: }{value}'"
|
||||
msgstr ""
|
||||
"Határozza meg a SONY gyűjtemények átnevezési szabályait. Ez csak akkor "
|
||||
"működik, ha\n"
|
||||
"a metaadatok kezelése automatikusra van állítva. A SONY-n a gyűjteméy neve "
|
||||
"attól függ,\n"
|
||||
"hogy szabványos vagy egyedi mezőről van szó. A szabványos mező alapján "
|
||||
"készült\n"
|
||||
"gyűjtemény neve a mező értékéből képződik. Például, ha a szabványos 'series' "
|
||||
"(sorozat)\n"
|
||||
"oszlop értéke „Darkover”, akkor a gyűjtemény neve „Darkover” lesz.\n"
|
||||
"Az egyedi mezőkből képzett gyűjtemény neve tartalmazza a mező értékét és a "
|
||||
"mező nevét is.\n"
|
||||
"Ennél a példánál maradva, ha az egyedi „My Collection” oszlop tartalmazza a "
|
||||
"„Darkover” értéket,\n"
|
||||
"akkor az ebből képzett gyűjtemény neve „Darkover (My Collection)” lesz.\n"
|
||||
"Hogy egyértelmű legyen ez a leírás, ezek után a „Darkover”-re mint értékre, "
|
||||
"a „My Collection”-re\n"
|
||||
"pedig mint kategóriára hivatkozunk.\n"
|
||||
"Ha több könyv generált gyűjtemény neve megegyezik, mindegyik könyv bekerül "
|
||||
"ebbe a bizonyos\n"
|
||||
"gyűjteménybe.\n"
|
||||
"Az itt lévő finombeállításokkal részletesen meghatározhatja, hogy a "
|
||||
"szabványos és egyedi\n"
|
||||
"mezők hogyan szerepeljenek a gyűjteményekben. Például leírást adhat a "
|
||||
"gyűjteményhez, ha\n"
|
||||
"„Valami_oszlop (Címke)” fomában adja meg a gyűjteményt. Több mezőt \n"
|
||||
"összevonva is létrehozhat gyűjteményt, például a „series”, „#my_series_1”, "
|
||||
"és „#my_series_2” mezők\n"
|
||||
"megjeleníthetők a „Valami_érték (Sorozat)” gyűjteményben.\n"
|
||||
"Itt két egymáshoz kapcsolódó beállítást talál. Az első meghatározza metaadat "
|
||||
"mezőhöz kapcsolódó\n"
|
||||
"kategória nevet. A második pedig egy sablon, ami azt szabályozza, hogy az "
|
||||
"érték és a kategória milyen\n"
|
||||
"szabály szerint alkosson gyűjteményt.\n"
|
||||
"Az első beállítás formátuma a következő:\n"
|
||||
"sony_collection_renaming_rules = {'mezőnév':'kategórianév', "
|
||||
"'mezőnév':'kategórianév', ...}\n"
|
||||
"A másik beállítás egy sablon, amely a calibre program sablon nyelvét "
|
||||
"használja.\n"
|
||||
"Formátuma a következő:\n"
|
||||
"sony_collection_name_template = '{value}{category:| (|)}'\n"
|
||||
"Csak a {value} (érték) és {category} (kategória) változókat tartalmazhatja.\n"
|
||||
"A {value} soha nem lehet üres, míg a {category} lehet.\n"
|
||||
"Az alapbeállítás szerint az érték előre kerül, majd ezt követi a kategória "
|
||||
"zárójelben.\n"
|
||||
"Példák:\n"
|
||||
"Az első három példában a sony_collection_name_template értékét nem "
|
||||
"változtatjuk.\n"
|
||||
"1., Három sorozat oszlopot akarunk egy gyűjteménybe összevonni, ahol a "
|
||||
"mezőnevek:\n"
|
||||
"'series', '#series_1' és '#series_2'. A zárójelbe nem akarunk semmit tenni.\n"
|
||||
"Ehhez:\n"
|
||||
"sony_collection_renaming_rules={'series':'', '#series_1':'', "
|
||||
"'#series_2':''}\n"
|
||||
"lesz a beállítás.\n"
|
||||
"2., A „Series” szót akarjuk minden sorozatból, a „Tag” szót pedig a "
|
||||
"címkékből készült\n"
|
||||
"gyűjteményekben a zárójelek között megjeleníteni.\n"
|
||||
"Ehhez:\n"
|
||||
"sony_collection_renaming_rules={'series':'Series', 'tags':'Tag'}\n"
|
||||
"lesz a beállítás.\n"
|
||||
"3., A 'series' és a '#myseries' oszlopokból összevonva akarunk egy "
|
||||
"gyűjteményt,\n"
|
||||
"amelyben a zárójelben a „Series” szó szerepeljen.\n"
|
||||
"Ehhez:\n"
|
||||
"sony_collection_renaming_rules={'series':'Series', '#myseries':'Series'}\n"
|
||||
"lesz a beállítás.\n"
|
||||
"4., A második példához hasonló de a kategóriát a gyűjtemény elején\n"
|
||||
"kettősponttal együtt akarjuk szerepeltetni.\n"
|
||||
"Ehhez:\n"
|
||||
"sony_collection_renaming_rules={'series':'Series', 'tags':'Tag'}\n"
|
||||
"sony_collection_name_template='{category:||: }{value}\n"
|
||||
"lesz a beállítás. A példánál maradva „Series: Darkover”"
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:316
|
||||
msgid "Specify how SONY collections are sorted"
|
||||
@ -22117,3 +22244,14 @@ msgstr ""
|
||||
"állapotot.\n"
|
||||
"Ha a save_original_format értéke False, akkor a calibre nem menti az eredeti "
|
||||
"fájlt."
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr "A legutóbb olvasott könyvek listájában megjelenített könyvek száma"
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-18 09:30+0000\n"
|
||||
"Last-Translator: Baharuddin Nur <Unknown>\n"
|
||||
"Language-Team: Indonesian <id@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:41+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:05+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Tidak ada apa-apanya"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Tidak ada apa-apanya"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Tidak ada apa-apanya"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Tidak ada apa-apanya"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -966,7 +966,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -978,38 +978,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1017,60 +1017,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1090,7 +1097,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1098,7 +1105,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1171,12 +1178,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1184,13 +1191,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1310,23 +1317,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1407,7 +1414,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1434,11 +1441,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2145,7 +2152,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4778,7 +4785,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5035,12 +5042,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5636,79 +5643,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7308,25 +7315,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11269,12 +11276,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11377,7 +11384,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13137,7 +13144,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13791,20 +13798,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15046,7 +15053,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15054,34 +15073,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15319,129 +15338,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19279,3 +19298,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -7,16 +7,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-31 07:59+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2012-01-09 12:04+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"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-01 05:30+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-10 05:21+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "まったく何もしません"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "まったく何もしません"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "まったく何もしません"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "まったく何もしません"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -956,7 +956,7 @@ msgstr "電話機 S60 と通信します。"
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr "WebOSタブレットと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -976,31 +976,31 @@ msgstr ""
|
||||
"iTunes</em>を使ってください。</p><p>アドバンストモードではAppleドライバーを使用したiDevicesへの直接接続はサポートされていま"
|
||||
"せん。</p><p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr "Apple ドライバーを無効にする"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr "Apple ドライバーを有効化"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "iTunes/iBooksのカテゴリーをシリーズとして使う"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr "iTunesのジャンル / iBooksのカテゴリーをシリーズ名として使う"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "iTunes/iBooksから表紙を保存"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "iTunes/iBooksからの表紙を使用する(キャッシュする)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
@ -1008,7 +1008,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"iTunesの「設定|詳細」にある、「ライブラリへの追加時にファイルを[iTunes Media %s]フォルダーにコピーする」が有効になっています。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1019,19 +1019,19 @@ msgstr ""
|
||||
"sに転送される本はcalibreで設定されたディレクトリに保存されます。</p><p>有効にすると、iTunesはiTunesのメディアフォルダーにコピー"
|
||||
"が保存されます。</p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Appleデバイス"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "iTunes/iBooksと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Appleの機器が見つかりました。iTunes を起動しています。しばらくお待ちください..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1039,29 +1039,39 @@ msgstr ""
|
||||
"iDeviceから直接電子書籍をコピーできません。iTunesのライブラリから一度デスクトップへドラッグしてから、calibreのライブラリウィンドウに追"
|
||||
"加してください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
"サポートされていない直接接続モードです。詳しくは "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 "
|
||||
"で「iTunesへ接続」の使い方を参照してください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "デバイスの書誌情報リストを更新しています..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr "%(num)d / %(tot)d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "完了"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1071,7 +1081,7 @@ msgstr ""
|
||||
"iBooksアプリを使って削除してください。\n"
|
||||
"「詳細を表示」をクリックするとリストを表示します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1079,7 +1089,7 @@ msgstr ""
|
||||
"いくつかの表紙が変換できませんでした。\n"
|
||||
"「詳細を表示」をクリックするとリストを表示します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1099,7 +1109,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "ニュース"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1107,7 +1117,7 @@ msgstr "ニュース"
|
||||
msgid "Catalog"
|
||||
msgstr "カタログ"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "iTunesと通信します。"
|
||||
|
||||
@ -1182,12 +1192,12 @@ msgstr "本をデバイスの書誌情報リストへ追加しています..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "デバイスから本を削除しています..."
|
||||
|
||||
@ -1195,13 +1205,13 @@ msgstr "デバイスから本を削除しています..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "デバイスの書誌情報リストから本を削除しています..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "デバイスに書誌情報を送信しています..."
|
||||
|
||||
@ -1321,23 +1331,23 @@ msgstr "Hanvon N520 電子書籍リーダ─と通信します。"
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "The Book リーダーと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr "Libre Airリーダーと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "電子書籍リーダー SpringDesign Alex と通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Azbookaと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "電子書籍リーダー Elonex EB 511と通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr "Cybook Odyssey 電子書籍リーダー と通信します。"
|
||||
|
||||
@ -1418,8 +1428,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr "<b>場所:%(dl)d • %(typ)s</b><br />"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Kindle 2/3電子書籍リーダーと通信します。"
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr "Kindle 2/3/4/Touch eBookリーダーと通信"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1449,11 +1459,11 @@ msgstr ""
|
||||
"ページ番号を生成するには2つの方法があります。このオプションを使うと、印刷された本に近い、より正確なページ番号を生成できますが、この方法は遅く、Kindl"
|
||||
"eに送信する時間がかかります。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Kindle DX 電子書籍リーダ─と通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr "Amazon Kindle Fireと通信"
|
||||
|
||||
@ -2227,7 +2237,7 @@ msgstr ""
|
||||
"%(en)sを使って有効にします。個々のアクションは、%(dis)s オプションで無効にすることができます。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr "ユーザー定義のパターンを使って文章や構造を変更します。"
|
||||
|
||||
@ -5073,7 +5083,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "calibreライブラリの本からカタログを作成"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "変換できません"
|
||||
|
||||
@ -5333,12 +5343,12 @@ msgid "Connect/share"
|
||||
msgstr "接続/共有"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr "停止"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr "サーバーを停止します。これには1分ほどかかります、お待ちください..."
|
||||
|
||||
@ -5955,80 +5965,80 @@ msgstr "%s にフォーマットがありません。"
|
||||
msgid "Searching in"
|
||||
msgstr "この中を検索"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "追加中..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "すべてのサブディレクトリを検索..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "パスエラー"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "指定したディレクトリは処理できません。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "本なし"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "本が見つかりません"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "許可がありません"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
"ファイルにアクセスする権限が無いので、ファイルを追加できませんでした。「詳細を表示」をクリックして問題のファイルのリストを参照してください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "追加された"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "追加に失敗"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr "本追加の処理がおかしいようです。calibreを再起動して本をすこしづつ追加し、どの本が問題なのかを見つけてください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "重複するものを発見しました!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr "同じタイトルの本がデータベース中にすでに存在します。追加しますか?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "重複するものを追加中..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "保存中..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr "データを集めています。お待ちください..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "保存された"
|
||||
|
||||
@ -7583,7 +7593,7 @@ msgstr "表紙のアスペクト比を保つ(&A)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdf_output_ui.py:58
|
||||
msgid "&Custom size:"
|
||||
msgstr ""
|
||||
msgstr "カスタムサイズ(&C):"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/pml_output.py:14
|
||||
msgid "PMLZ Output"
|
||||
@ -7665,7 +7675,7 @@ msgstr "次へ(&N)"
|
||||
msgid "Preview"
|
||||
msgstr "プレビュー"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -7674,18 +7684,18 @@ msgstr ""
|
||||
"検索&\n"
|
||||
"置換"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "検索に使う正規表現(&S)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "無効な正規表現です"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11786,12 +11796,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "LRF ビューアーツールバー"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "次のページ"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "前のページ"
|
||||
|
||||
@ -11895,7 +11905,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "データベースの場所 %r に問題があります。calibreを終了します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "データベースが壊れています"
|
||||
|
||||
@ -13751,7 +13761,7 @@ msgid ""
|
||||
msgstr "変更を行ったのですぐにcalibreを再起動する必要があります。再起動するまで、他の設定をすることはできません。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "再起動が必要です。"
|
||||
|
||||
@ -14110,7 +14120,7 @@ msgstr "該当するプラグインが見つかりません。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:276
|
||||
msgid "files"
|
||||
msgstr ""
|
||||
msgstr "ファイル"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:277
|
||||
msgid "Add plugin"
|
||||
@ -14454,20 +14464,20 @@ msgstr ""
|
||||
"ここではデバイスへ送るボタンが押されたときに、calibreがどのように本を保存するか設定します。この設定は、「設定」->「高度な設定」-"
|
||||
">「プラグイン」のデバイスインターフェースプラグインをカスタマイズする事で、各デバイスごとに設定を上書きすることができます。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "コンテンツサーバーの開始に失敗しました"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "エラーログ:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "アクセスログ:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr "変更を有効にするには、サーバーを再起動する必要があります。"
|
||||
|
||||
@ -15787,7 +15797,22 @@ msgid ""
|
||||
msgstr ""
|
||||
"Calibreをデバッグモードで起動しました。Calibreの終了時、デバッグログが次のファイルに保存されます: %s<p>ログは自動的に表示されます。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr "コンテントサーバーの開始に失敗しました。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"コンテントサーバーの開始ができませんでした. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15796,23 +15821,23 @@ msgid ""
|
||||
msgstr ""
|
||||
"%s のライブラリデータベースは壊れています。Calibre に再確認して自動的にリビルドを行わせますか? リビルドは完全には成功しない可能性があります。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "変換エラー"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "レシピを無効にする"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>失敗</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "ジョブが実行中です。本当に終了しますか?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
@ -15822,11 +15847,11 @@ msgstr ""
|
||||
" 終了するとデバイスに問題を引き起こすかもしれません。<br>\n"
|
||||
" 本当に終了しますか?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr "アクティブなジョブ"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -16069,129 +16094,129 @@ msgstr "ユーザースタイルシート(&S):"
|
||||
msgid "No results found for:"
|
||||
msgstr "結果が見つかりませんでした:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "電子書籍ビューアーをカスタマイズするためのオプション"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "最後に使ったウィンドウのサイズを覚える"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr "ユーザースタイルシートを設定します。すべての本の見た目をカスタマイズすることができます。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "ビューアーウィンドウ幅の最大値ピクセル。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr "ビューアーウィンドウより大きな画像を、中にフィットするようにリサイズ"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "テキストをハイフン付け"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "ハイフン付けルールのデフォルト言語"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr "終了時に、ドキュメントの現在の位置を覚える"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr "マウスホイールでページめくりをする"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr "ページめくりアニメーションをする時間。デフォルトは0.5秒。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "フォントオプション"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "セリフフォントファミリー"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "サンセリフフォントファミリー"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "等幅フォントファミリー"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "標準フォントサイズ (ピクセル)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "等幅フォントサイズ (ピクセル)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "標準フォントタイプ"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr "編集中"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr "キーボードショートカットの編集の途中です。まず、ショートカット編集ボックスの外側をクリックして終了してください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr "辞書を検索(&L)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr "次を検索(&S)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "ジャンプ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "次の章"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "前の章"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "文書の最初"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "文書の最後"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "章の頭"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "章末"
|
||||
|
||||
@ -20605,3 +20630,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"calibreが、例えばEPUBからEPUBのように、同じフォーマットから同じフォーマットへ変換する場合、元のファイルを穂損します。なので、変換がおかしい"
|
||||
"場合このtweakを使ってもう一度実行することができます。これをFalseにするとcalibreは元のファイルを保存しなくなります。"
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-29 18:58+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Kannada <kn@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:41+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:06+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 16:02+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Korean <ko@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:42+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:07+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "아무 것도 안함"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "아무 것도 안함"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "아무 것도 안함"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "아무 것도 안함"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -954,7 +954,7 @@ msgstr "S60 휴대폰과 통신합니다."
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -966,38 +966,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr "iTunes/iBooks에 분류로서 시리즈를 사용"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr "iTunes/iBooks에서 표지를 캐시합니다"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1005,19 +1005,19 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple 장치"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "iTunes/iBooks와 통신합니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Apple 장치가 감지되어 iTunes를 실행합니다. 기다려주세요..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -1025,29 +1025,36 @@ msgstr ""
|
||||
"iDevice로 부터 책을 직접적으로 복사할 수 없습니다. 마우스를 이용하여, iTunes 라이브러리로 부터 직접 "
|
||||
"Calibre라이브러리에 추가하십시오"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "장치의 메타 정보 목록을 갱신합니다..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "완료됨"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -1057,7 +1064,7 @@ msgstr ""
|
||||
"iBooks 앱을 이용해서 삭제합니다.\n"
|
||||
"목록를 보려면 '상세히 보기'를 누르세요."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1065,7 +1072,7 @@ msgstr ""
|
||||
"일부 표지를 변환할 수 없었습니다.\n"
|
||||
"목록을 보려면 '상세히 보기'를 누르세요."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1085,7 +1092,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "뉴스"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1093,7 +1100,7 @@ msgstr "뉴스"
|
||||
msgid "Catalog"
|
||||
msgstr "분류"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "iTunes와 통신합니다."
|
||||
|
||||
@ -1166,12 +1173,12 @@ msgstr "책을 장치의 메타 정보 목록으로 추가합니다..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "장치에서 책을 삭제합니다..."
|
||||
|
||||
@ -1179,13 +1186,13 @@ msgstr "장치에서 책을 삭제합니다..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr "장치의 메타 정보 목록에서 책을 삭제합니다..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "메타 정보를 장치로 전송합니다..."
|
||||
|
||||
@ -1305,23 +1312,23 @@ msgstr "Hanvon N520 eBook Reader와 통신합니다."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr "The Book Reader와 통신합니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr "SpringDesign Alex eBook Reader와 통신합니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr "Azbooka와 통신합니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Elonex EB 511 eBook Reader와 통신합니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1402,8 +1409,8 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgstr "Kindle 2/3 eBook Reader와 통신합니다."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
msgid "Send page number information when sending books"
|
||||
@ -1429,11 +1436,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Kindle DX 전자책 리더와 통신합니다"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2166,7 +2173,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4895,7 +4902,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr "당신의 칼리버 라이브러리에 책의 분류를 생성"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "변환할 수 없음"
|
||||
|
||||
@ -5152,12 +5159,12 @@ msgid "Connect/share"
|
||||
msgstr "연결/공유"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5753,79 +5760,79 @@ msgstr "%s 는(은) 이용할 수 없는 형식입니다."
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "추가하는중..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr "모든 하위 디렉토리에서 추가..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr "경로 오류"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr "지정한 디렉토리는 처리할 수 없습니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr "책 없음"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr "발견된 책이 없습니다"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr "권한 없음"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "추가됨"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "추가하기 실패"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "중복 파일이 존재합니다!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr "중복 파일 추가..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "저장하는 중..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "저장됨"
|
||||
|
||||
@ -7428,7 +7435,7 @@ msgstr "다음(&N)"
|
||||
msgid "Preview"
|
||||
msgstr "미리보기"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
@ -7438,18 +7445,18 @@ msgstr ""
|
||||
"&\n"
|
||||
"교체"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr "검색 정규 표현식(&S)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr "잘못된 정규 표현식"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11397,12 +11404,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr "LRF 뷰어 툴바"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "다음 쪽"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "이전 쪽"
|
||||
|
||||
@ -11505,7 +11512,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr "%r 위치는 잘못된 데이터베이스 위치입니다. Calibre를 지금 종료합니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr "데이터베이스 오류 발견"
|
||||
|
||||
@ -13275,7 +13282,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr "재시작 필요"
|
||||
|
||||
@ -13934,20 +13941,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr "컨텐츠 서버 실행이 실패했습니다"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "오류 기록:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr "접근 기록:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15193,7 +15200,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15201,34 +15220,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr "변환 오류"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr "레시피 사용 안함"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr "<b>실패</b>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr "활동중인 작업이 있습니다. 종료하는게 확실합니까?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15466,129 +15485,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr "찾은 결과가 없음:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr "전자책 뷰어 사용자 정의 옵션"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr "최근 사용된 창 크기를 기억"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr "사용자 CSS 스타일 시트를 지정합니다. 모든 책의 모양새를 사용자 정의할 수 있습니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr "뷰어 창의 최대 너비입니다. 픽셀 단위입니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr "뷰어 창보다 큰 그림을 뷰어에 맞게 크기를 재조정합니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr "텍스트 붙임표(-) 붙이기"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr "붙임표 붙이기의 규칙에 대한 기본 언어"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr "글꼴 옵션"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr "세리프 글꼴"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr "산세리프 글꼴"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr "고정폭 글꼴"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr "표준 글자 크기(px)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr "고정폭 글자 크기(px)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr "표준 글꼴 종료"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr "이동하기..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "다음 구간"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr "이전 구간"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr "문서 시작"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr "문서 끝"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr "구간 시작"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr "구간 끝"
|
||||
|
||||
@ -19467,3 +19486,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-12-12 17:33+0000\n"
|
||||
"Last-Translator: Erdal Ronahi <erdal.ronahi@gmail.com>\n"
|
||||
"Language-Team: Kurdish <ku@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:42+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:07+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Tiştek nake"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Tiştek nake"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Tiştek nake"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Tiştek nake"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 16:44+0000\n"
|
||||
"Last-Translator: Mantas Kriaučiūnas <mantas@akl.lt>\n"
|
||||
"Language-Team: Lithuanian <lt@li.org>\n"
|
||||
@ -16,8 +16,8 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"(n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:43+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:07+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -29,8 +29,8 @@ msgstr "Nieko nedaro"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -41,7 +41,7 @@ msgstr "Nieko nedaro"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -101,16 +101,16 @@ msgstr "Nieko nedaro"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -145,8 +145,8 @@ msgstr "Nieko nedaro"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -951,7 +951,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -963,38 +963,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1002,60 +1002,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr "Apple įrenginys"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "baigta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1075,7 +1082,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Naujienos"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1083,7 +1090,7 @@ msgstr "Naujienos"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalogas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1156,12 +1163,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1169,13 +1176,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1295,23 +1302,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1392,7 +1399,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1419,11 +1426,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2130,7 +2137,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4760,7 +4767,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5017,12 +5024,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5618,79 +5625,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7290,25 +7297,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11251,12 +11258,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11359,7 +11366,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13119,7 +13126,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13773,20 +13780,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15028,7 +15035,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15036,34 +15055,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15301,129 +15320,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19261,3 +19280,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-05-06 12:35+0000\n"
|
||||
"Last-Translator: uGGa <Unknown>\n"
|
||||
"Language-Team: Latgalian <ltg@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:53+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:19+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Pilneigi nikū nadora"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Pilneigi nikū nadora"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Pilneigi nikū nadora"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Pilneigi nikū nadora"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-15 17:25+0000\n"
|
||||
"Last-Translator: simss <Unknown>\n"
|
||||
"Language-Team: Latvian <ivars_a@inbox.lv>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:42+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:07+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
"X-Poedit-Country: LATVIA\n"
|
||||
"X-Poedit-Language: Latvian\n"
|
||||
|
||||
@ -30,8 +30,8 @@ msgstr "Pilnīgi neko nedara"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -42,7 +42,7 @@ msgstr "Pilnīgi neko nedara"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -102,16 +102,16 @@ msgstr "Pilnīgi neko nedara"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -146,8 +146,8 @@ msgstr "Pilnīgi neko nedara"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -946,7 +946,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -958,38 +958,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -997,60 +997,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr "pabeigts"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1070,7 +1077,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Ziņas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1078,7 +1085,7 @@ msgstr "Ziņas"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalogs"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1151,12 +1158,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "Dzēš grāmatas no ierīces..."
|
||||
|
||||
@ -1164,13 +1171,13 @@ msgstr "Dzēš grāmatas no ierīces..."
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "Sūta ierīcei grāmatu metadatus..."
|
||||
|
||||
@ -1290,23 +1297,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1387,7 +1394,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1414,11 +1421,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2125,7 +2132,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4763,7 +4770,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr "Nav iespējams pārveidot"
|
||||
|
||||
@ -5020,12 +5027,12 @@ msgid "Connect/share"
|
||||
msgstr "Savienoties/koplietot"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5621,79 +5628,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr "Pievieno..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr "Pievienots"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr "Pievienošana neveiksmīga"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr "Atrasti dublikāti!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr "Saglabā..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr "Saglabāts"
|
||||
|
||||
@ -7294,25 +7301,25 @@ msgstr "&Nākošais"
|
||||
msgid "Preview"
|
||||
msgstr "Priekšskats"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11259,12 +11266,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr "Nākošā lapa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr "Iepriekšējā lapa"
|
||||
|
||||
@ -11367,7 +11374,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13127,7 +13134,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13781,20 +13788,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr "Kļūdu žurnāls:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15036,7 +15043,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15044,34 +15063,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15309,129 +15328,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr "Nākošā sadaļa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19271,3 +19290,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-11-26 20:57+0000\n"
|
||||
"Last-Translator: ScHRiLL <Unknown>\n"
|
||||
"Language-Team: Macedonian <mk@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:43+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:08+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "Неправи апсолутно ништо"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "Неправи апсолутно ништо"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "Неправи апсолутно ништо"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "Неправи апсолутно ништо"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -956,38 +956,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -995,60 +995,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1068,7 +1075,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1076,7 +1083,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1149,12 +1156,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1162,13 +1169,13 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr ""
|
||||
|
||||
@ -1288,23 +1295,23 @@ msgstr ""
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1385,7 +1392,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1412,11 +1419,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2123,7 +2130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4753,7 +4760,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5010,12 +5017,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5611,79 +5618,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7283,25 +7290,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11244,12 +11251,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11352,7 +11359,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13112,7 +13119,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13766,20 +13773,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15021,7 +15028,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15029,34 +15048,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15294,129 +15313,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19254,3 +19273,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-12-30 14:42+0000\n"
|
||||
"POT-Creation-Date: 2012-01-06 07:42+0000\n"
|
||||
"PO-Revision-Date: 2011-08-05 17:53+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Malayalam <ml@li.org>\n"
|
||||
@ -15,8 +15,8 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Launchpad-Export-Date: 2011-12-31 05:43+0000\n"
|
||||
"X-Generator: Launchpad (build 14560)\n"
|
||||
"X-Launchpad-Export-Date: 2012-01-07 05:08+0000\n"
|
||||
"X-Generator: Launchpad (build 14640)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -28,8 +28,8 @@ msgstr "ഒന്നും തന്നെ ചെയ്തില്ല"
|
||||
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:286
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:287
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:99
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:101
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/books.py:24
|
||||
@ -40,7 +40,7 @@ msgstr "ഒന്നും തന്നെ ചെയ്തില്ല"
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:660
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:333
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prst1/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:485
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:488
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/input.py:109
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/chm/metadata.py:56
|
||||
@ -100,16 +100,16 @@ msgstr "ഒന്നും തന്നെ ചെയ്തില്ല"
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:169
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:749
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1006
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1010
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1007
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1009
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:1011
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/utils.py:299
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/writer2/indexer.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:145
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:147
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:818
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:350
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/parse_utils.py:357
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:142
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:149
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:66
|
||||
@ -144,8 +144,8 @@ msgstr "ഒന്നും തന്നെ ചെയ്തില്ല"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/add.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:378
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:381
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:168
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:159
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:166
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:583
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/__init__.py:42
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:122
|
||||
@ -950,7 +950,7 @@ msgstr ""
|
||||
msgid "Communicate with WebOS tablets."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:48
|
||||
msgid ""
|
||||
"<p>If you do not want calibre to recognize your Apple iDevice when it is "
|
||||
"connected to your computer, click <b>Disable Apple Driver</b>.</p><p>To "
|
||||
@ -962,38 +962,38 @@ msgid ""
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:64
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:68
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:119
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:121
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:123
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:125
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\"Copy files to iTunes Media folder %s\" is enabled in iTunes "
|
||||
"Preferences|Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:127
|
||||
msgid ""
|
||||
"<p>This setting should match your iTunes <i>Preferences</i>|<i>Advanced</i> "
|
||||
"setting.</p><p>Disabling will store copies of books transferred to iTunes in "
|
||||
@ -1001,60 +1001,67 @@ msgid ""
|
||||
"is configured to store copies in your iTunes Media folder.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:191
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:193
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:206
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:207
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:208
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:209
|
||||
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:371
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:212
|
||||
msgid ""
|
||||
"Unsupported direct connect mode. See "
|
||||
"http://www.mobileread.com/forums/showthread.php?t=118559 for instructions on "
|
||||
"using 'Connect to iTunes'"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:376
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:379
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:451
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:490
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3164
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:456
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:495
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1088
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1132
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3162
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3202
|
||||
#, python-format
|
||||
msgid "%(num)d of %(tot)d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3171
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:503
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1137
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3209
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:110
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:683
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:688
|
||||
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:1045
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1051
|
||||
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:2687
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2695
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:102
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1074,7 +1081,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "വാര്ത്തകള്"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2688
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2696
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:666
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:3086
|
||||
@ -1082,7 +1089,7 @@ msgstr "വാര്ത്തകള്"
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3025
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3062
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
@ -1155,12 +1162,12 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:354
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:114
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:125
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:115
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:126
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:426
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:458
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:334
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:352
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:355
|
||||
msgid "Removing books from device..."
|
||||
msgstr "പുസ്തകങ്ങള് ഉപകരണത്തില് നിന്നും നീക്കം ചെയ്യുന്നു..."
|
||||
|
||||
@ -1168,13 +1175,13 @@ msgstr "പുസ്തകങ്ങള് ഉപകരണത്തില്
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:462
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kobo/driver.py:469
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:364
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:362
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:367
|
||||
msgid "Removing books from device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:442
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:394
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:397
|
||||
msgid "Sending metadata to device..."
|
||||
msgstr "മെറ്റാഡേറ്റ ഉപകരണത്തിലേക്ക് അയക്കുന്നു..."
|
||||
|
||||
@ -1295,23 +1302,23 @@ msgstr "Hanvon N520 eBook reader ആയി സംവദിക്കുക."
|
||||
msgid "Communicate with The Book reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:58
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:59
|
||||
msgid "Communicate with the Libre Air reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:71
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:72
|
||||
msgid "Communicate with the SpringDesign Alex eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:132
|
||||
msgid "Communicate with the Azbooka"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:150
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:151
|
||||
msgid "Communicate with the Elonex EB 511 eBook reader."
|
||||
msgstr "Elonex EB 511 eBook reader ആയി സംവദിക്കുക."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:171
|
||||
msgid "Communicate with the Cybook Odyssey eBook reader."
|
||||
msgstr ""
|
||||
|
||||
@ -1392,7 +1399,7 @@ msgid "<b>Location %(dl)d • %(typ)s</b><br />"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:288
|
||||
msgid "Communicate with the Kindle 2/3 eBook reader."
|
||||
msgid "Communicate with the Kindle 2/3/4/Touch eBook reader."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:297
|
||||
@ -1419,11 +1426,11 @@ msgid ""
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:374
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:393
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
msgstr "Kindle DX eBook reader ആയി സംവദിക്കുക."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:383
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:402
|
||||
msgid "Communicate with the Kindle Fire"
|
||||
msgstr ""
|
||||
|
||||
@ -2130,7 +2137,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/cli.py:157
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:18
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:16
|
||||
msgid "Modify the document text and structure using user defined patterns."
|
||||
msgstr ""
|
||||
|
||||
@ -4764,7 +4771,7 @@ msgid "Create a catalog of the books in your calibre library"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/convert.py:88
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:594
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:599
|
||||
msgid "Cannot convert"
|
||||
msgstr ""
|
||||
|
||||
@ -5021,12 +5028,12 @@ msgid "Connect/share"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:191
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:84
|
||||
msgid "Stopping"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/device.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:80
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:85
|
||||
msgid "Stopping server, this could take upto a minute, please wait..."
|
||||
msgstr ""
|
||||
|
||||
@ -5622,79 +5629,79 @@ msgstr ""
|
||||
msgid "Searching in"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:246
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:244
|
||||
msgid "Adding..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:260
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:258
|
||||
msgid "Searching in all sub-directories..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:271
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:269
|
||||
msgid "Path error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:272
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:270
|
||||
msgid "The specified directory could not be processed."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:276
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:274
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:899
|
||||
msgid "No books"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:277
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:275
|
||||
msgid "No books found"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:290
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:288
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:806
|
||||
msgid "No permission"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:291
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:289
|
||||
msgid ""
|
||||
"Cannot add some files as you do not have permission to access them. Click "
|
||||
"Show Details to see the list of such files."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:359
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:357
|
||||
msgid "Added"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:372
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:370
|
||||
msgid "Adding failed"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:373
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:371
|
||||
msgid ""
|
||||
"The add books process seems to have hung. Try restarting calibre and adding "
|
||||
"the books in smaller increments, until you find the problem book."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:388
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:386
|
||||
msgid "Duplicates found!"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:389
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:387
|
||||
msgid ""
|
||||
"Books with the same title as the following already exist in the database. "
|
||||
"Add them anyway?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:392
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:390
|
||||
msgid "Adding duplicates..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:461
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:459
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:468
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:466
|
||||
msgid "Collecting data, please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:540
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:538
|
||||
msgid "Saved"
|
||||
msgstr ""
|
||||
|
||||
@ -7294,25 +7301,25 @@ msgstr ""
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:17
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:15
|
||||
msgid ""
|
||||
"Search\n"
|
||||
"&\n"
|
||||
"Replace"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:30
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:33
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:36
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:29
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:32
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:35
|
||||
msgid "&Search Regular Expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:111
|
||||
msgid "Invalid regular expression"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/convert/search_and_replace.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:112
|
||||
#, python-format
|
||||
msgid "Invalid regular expression: %s"
|
||||
@ -11255,12 +11262,12 @@ msgid "LRF Viewer toolbar"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:131
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:578
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
msgid "Next Page"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:132
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:579
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:577
|
||||
msgid "Previous Page"
|
||||
msgstr ""
|
||||
|
||||
@ -11363,7 +11370,7 @@ msgid "Bad database location %r. calibre will now quit."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:497
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:502
|
||||
msgid "Corrupted database"
|
||||
msgstr ""
|
||||
|
||||
@ -13123,7 +13130,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:338
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:127
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:132
|
||||
msgid "Restart needed"
|
||||
msgstr ""
|
||||
|
||||
@ -13777,20 +13784,20 @@ msgid ""
|
||||
"by customizing the device interface plugins in Preferences->Advanced->Plugins"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:435
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:440
|
||||
msgid "Failed to start content server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:106
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:111
|
||||
msgid "Error log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:113
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:118
|
||||
msgid "Access log:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:128
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/server.py:133
|
||||
msgid "You need to restart the server for changes to take effect"
|
||||
msgstr ""
|
||||
|
||||
@ -15032,7 +15039,19 @@ msgid ""
|
||||
"automatically."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:498
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:376
|
||||
msgid "Failed to start Content Server"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:377
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Could not start the content server. Error:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:503
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The library database at %s appears to be corrupted. Do you want calibre to "
|
||||
@ -15040,34 +15059,34 @@ msgid ""
|
||||
"successful."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:582
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:587
|
||||
msgid "Conversion Error"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:605
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:610
|
||||
msgid "Recipe Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:621
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:626
|
||||
msgid "<b>Failed</b>"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:655
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:660
|
||||
msgid "There are active jobs. Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:658
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:663
|
||||
msgid ""
|
||||
" is communicating with the device!<br>\n"
|
||||
" Quitting may cause corruption on the device.<br>\n"
|
||||
" Are you sure you want to quit?"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:662
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:667
|
||||
msgid "Active jobs"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:730
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:735
|
||||
msgid ""
|
||||
"will keep running in the system tray. To close it, choose <b>Quit</b> in the "
|
||||
"context menu of the system tray."
|
||||
@ -15305,129 +15324,129 @@ msgstr ""
|
||||
msgid "No results found for:"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:40
|
||||
msgid "Options to customize the ebook viewer"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:48
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:47
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:810
|
||||
msgid "Remember last used window size"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:50
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:105
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:49
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:104
|
||||
msgid ""
|
||||
"Set the user CSS stylesheet. This can be used to customize the look of all "
|
||||
"books."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:52
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:51
|
||||
msgid "Maximum width of the viewer window, in pixels."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:53
|
||||
msgid "Resize images larger than the viewer window to fit inside it"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:55
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:54
|
||||
msgid "Hyphenate text"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:57
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:56
|
||||
msgid "Default language for hyphenation rules"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:59
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:58
|
||||
msgid "Save the current position in the document, when quitting"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:61
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:60
|
||||
msgid "Have the mouse wheel turn pages"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:63
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:62
|
||||
msgid ""
|
||||
"The time, in seconds, for the page flip animation. Default is half a second."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:66
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:65
|
||||
msgid ""
|
||||
"The amount by which to change the font size when clicking the font "
|
||||
"larger/smaller buttons. Should be a number between 0 and 1."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:70
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:69
|
||||
msgid "Font options"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:71
|
||||
msgid "The serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:74
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:73
|
||||
msgid "The sans-serif font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:75
|
||||
msgid "The monospaced font family"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:76
|
||||
msgid "The standard font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:77
|
||||
msgid "The monospaced font size in px"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:79
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:78
|
||||
msgid "The standard font type"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:133
|
||||
msgid "Still editing"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:135
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:134
|
||||
msgid ""
|
||||
"You are in the middle of editing a keyboard shortcut first complete that, by "
|
||||
"clicking outside the shortcut editing box."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:547
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:545
|
||||
msgid "&Lookup in dictionary"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:552
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:550
|
||||
msgid "&Search for next occurrence"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:555
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:141
|
||||
msgid "Go to..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:569
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:567
|
||||
msgid "Next Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:568
|
||||
msgid "Previous Section"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:572
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:570
|
||||
msgid "Document Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:571
|
||||
msgid "Document End"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:575
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:573
|
||||
msgid "Section Start"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:576
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/documentview.py:574
|
||||
msgid "Section End"
|
||||
msgstr ""
|
||||
|
||||
@ -19265,3 +19284,14 @@ msgid ""
|
||||
"conversion is poor, you can tweak the settings and run it again. By setting\n"
|
||||
"this to False you can prevent calibre from saving the original file."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:473
|
||||
msgid "Number of recently viewed books to show"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/resources/default_tweaks.py:474
|
||||
msgid ""
|
||||
"Right-clicking the View button shows a list of recently viewed books. "
|
||||
"Control\n"
|
||||
"how many should be shown, here."
|
||||
msgstr ""
|
||||
|
||||
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