0.8.29 release

This commit is contained in:
GRiker 2011-12-02 04:17:49 -07:00
commit 4f4fa99484
159 changed files with 21473 additions and 1768 deletions

View File

@ -4,20 +4,91 @@
# for important features/bug fixes.
# Also, each release can have new and improved recipes.
#- version: ?.?.?
# date: 2011-??-??
# - version: ?.?.?
# date: 2011-??-??
#
# new features:
# - title:
# new features:
# - title:
#
# bug fixes:
# - title:
# bug fixes:
# - title:
#
# improved recipes:
# -
# improved recipes:
# -
#
# new recipes:
# - title:
# new recipes:
# - title:
- version: 0.8.29
date: 2011-12-02
new features:
- title: "When searching for author names with accented characters, allow the non accented version to match. For example, searching for Nino will now match Niño."
tickets: [879729]
- title: "Driver for Blackberry Playbook, Motorola Electrify and Samsung Galaxy GIO S5660"
tickets: [805745,898123,897330]
- title: "Metadata search and replace, make the regular expressions unicode aware"
bug fixes:
- title: "Fix regression in 0.8.28 that broke sending PDF files to iTunes"
tickets: [896791]
- title: "Metadata download, do not strip # from titles."
tickets: [898310]
- title: "Conversion pipeline: Do not error out on books that set font size to zero."
tickets: [898194]
- title: "News download: Respect the delay setting when downloading RSS feeds as well."
tickets: [897907]
- title: "EPUB Output: Ensure that xml:lang is set if lang is set as ADE looks for xml:lang, not lang"
tickets: [897531]
- title: "Content server: Reduce memory consumption when sending very large files"
tickets: [897343]
- title: "Preserve capitalization of Scottish author names when downloading metadata"
- title: "Fix update title sort in bulk metadata edit not using language information"
- title: "Fix sorting by published column in the download metadata dialog broken"
tickets: [896832]
- title: "Allow use of languages field when generating CSV/XML catalogs"
tickets: [896620]
- title: "Get Books: Fix ebookpoint.pl"
- title: "When calculating title sort for a book based on its language, only use the specified language not a combination of the language and english"
tickets: [896412]
improved recipes:
- Metro NL
- Ming Pao
- Rolling Stones Mag
- Buffalo News
new recipes:
- title: gs24.pl and Gazeta.pl Szczecin
author: Michal Szkutnik
- title: Vanity Fair
author: Barty
- title: Skylife
author: thomass
- title: Daily Writing Tips
author: NotTaken
- title: TechDirt
author: Krittika Goyal
- title: Cosmopolitan UK
author: Dave Asbury
- version: 0.8.28
date: 2011-11-25

View File

@ -2,7 +2,26 @@
from calibre.web.feeds.news import BasicNewsRecipe
import re
from calibre.utils.magick import Image
from BeautifulSoup import BeautifulSoup
try:
from calibre_plugins.drMerry.debug import debuglogger as mlog
print 'drMerry debuglogger found, debug options can be used'
from calibre_plugins.drMerry.stats import statslogger as mstat
print 'drMerry stats tracker found, stat can be tracked'
mlog.setLoglevel(1) #-1 == no log; 0 for normal output
mstat.calculateStats(False) #track stats (to track stats loglevel must be > 0
KEEPSTATS = mstat.keepmystats()
SHOWDEBUG0 = mlog.showdebuglevel(0)
SHOWDEBUG1 = mlog.showdebuglevel(1)
SHOWDEBUG2 = mlog.showdebuglevel(2)
except:
print 'drMerry debuglogger not found, skipping debug options'
SHOWDEBUG0 = False
SHOWDEBUG1 = False
SHOWDEBUG2 = False
KEEPSTATS = False
print ('level0: %s\nlevel1: %s\nlevel2: %s' % (SHOWDEBUG0,SHOWDEBUG1,SHOWDEBUG2))
''' Version 1.2, updated cover image to match the changed website.
added info date on title
@ -17,39 +36,37 @@ from calibre.utils.magick import Image
changed è into è
updated remove tags
removed keep_only tags
Version 1.8 26-11-2022
added remove tag: article-slideshow
'''
class AdvancedUserRecipe1306097511(BasicNewsRecipe):
title = u'Metro Nieuws NL'
oldest_article = 1.5
max_articles_per_feed = 100
oldest_article = 10
max_articles_per_feed = 15
__author__ = u'DrMerry'
description = u'Metro Nederland'
language = u'nl'
simultaneous_downloads = 5
masthead_url = 'http://blog.metronieuws.nl/wp-content/themes/metro/images/header.gif'
timeout = 2
#delay = 1
center_navbar = True
#auto_cleanup = True
#auto_cleanup_keep = '//div[@class="article-image-caption-2column"]/*|//div[@id="date"]/*|//div[@class="article-image-caption-3column"]/*'
timefmt = ' [%A, %d %b %Y]'
no_stylesheets = True
remove_javascript = True
remove_empty_feeds = True
cover_url = 'http://www.oldreadmetro.com/img/en/metroholland/last/1/small.jpg'
publication_type = 'newspaper'
remove_tags_before = dict(id='date')
remove_tags_after = dict(name='div', attrs={'class':'article-body'})
encoding = 'utf-8'
remove_attributes = ['style', 'font', 'width', 'height']
use_embedded_content = False
conversion_options = {
'authors' : 'Metro Nederland',
'author_sort' : 'Metro Nederland',
'authors' : 'Metro Nederland & calibre & DrMerry',
'author_sort' : 'Metro Nederland & calibre & DrMerry',
'publisher' : 'DrMerry/Metro Nederland'
}
extra_css = 'body {padding:5px 0px; background:#fff;font-size: 13px;}\
#date {clear: both;margin-left: 19px;font-size: 11px;font-weight: 300;color: #616262;height: 15px;}\
#date, div.share-and-byline div.byline div.text div.title, div.share-and-byline div.byline div.text div.name {clear: both;margin-bottom: 10px;font-size:0.5em; color: #616262;}\
.article-box-fact.module-title {clear:both;padding: 8px 0;color: #24763b;font-family: arial, sans-serif;font-size: 14px;font-weight: bold;}\
h1.title {color: #000000;font-size: 44px;padding-bottom: 10px;font-weight: 300;} h2.subtitle {font-size: 13px;font-weight: 700;padding-bottom: 10px;}\
.article-body p{padding-bottom:10px;}div.column-1-3{margin-left: 19px;padding-right: 9px;}\
@ -58,28 +75,43 @@ class AdvancedUserRecipe1306097511(BasicNewsRecipe):
p.article-image-caption .credits {font-style: italic;font-size: 10px;}\
div.article-image-caption {width: 246px;margin-bottom: 5px;margin-left: 10px;}\
div.article-image-caption-2column {margin-bottom: 10px;width: 373px;} div.article-image-caption-3column {}\
img {border:0px;} .img-mask {position:absolute;top:0px;left:0px;}'
img {border:0px; padding:2px;} hr.merryhr {width:30%; border-width:0px; color:green; margin-left:5px; background-color: green} div.column-3 {background-color:#eee; width:50%; margin:2px; float:right; padding:2px;} div.column-3 module-title {border: 1px solid #aaa} div.article-box-fact div.subtitle {font-weight:bold; color:green;}'
remove_tags = [dict(name='div', attrs={'class':[ 'metroCommentFormWrap', 'related-links'
'commentForm', 'metroCommentInnerWrap', 'article-slideshow-counter-container', 'article-slideshow-control', 'ad', 'header-links',
'art-rgt','pluck-app pluck-comm', 'share-and-byline', 'article-tools-below-title', 'col-179 ', 'related-links', 'clear padding-top-15', 'share-tools',
'article1','article-page-auto-pushes', 'footer-edit','clear']}),
dict(name='div', attrs={'id':['article-2', 'article-4', 'article-1', 'navigation', 'footer', 'header', 'comments', 'sidebar', 'share-and-byline']}),
dict(name='iframe')]
preprocess_regexps = [(re.compile(r'(<p>(&nbsp;|\s)*</p>|<a[^>]*>Tweet</a>|<a[^>]*>|</a>|<!--.*?-->)', re.DOTALL|re.IGNORECASE),lambda match: ''),
(re.compile(r'(&nbsp;|\s\s)+\s*', re.DOTALL|re.IGNORECASE),lambda match: ' '),
(re.compile(r'([\s>])([^\s>]+)(<span[^>]+) />', re.DOTALL|re.IGNORECASE),
lambda match: match.group(1) + match.group(3) + '>' + match.group(2) + '</span>'),
preprocess_regexps = [
(re.compile(r'<img[^>]+top-line[^>]+>', re.DOTALL|re.IGNORECASE),
lambda match: '<hr class="merryhr" />'),
(re.compile(r'(<img[^>]+metronieuws\.nl/[^>]+/templates/[^>]+jpe?g[^>]+>|metronieuws\.nl/internal\-roxen\-unit\.gif)', re.DOTALL|re.IGNORECASE),
lambda match: ''),
]
def preprocess_html(self, soup):
if SHOWDEBUG0 == True:
mlog.setdefaults()
mlog.addTextAndTag(['Show debug = on with level'], [str(mlog.debuglevel)])
if KEEPSTATS == True:
mlog.addDebug('Stats will be calculated')
else:
mlog.addTextAndTag(['Stats won\'t be calculated\nTo be enabled, stats must be true, currently','and debug level must be 1 or higher, currently'],[mstat.dokeepmystats, mlog.debuglevel])
mlog.showDebug()
myProcess = MerryProcess()
myProcess.removeUnwantedTags(soup)
return soup
def postprocess_html(self, soup, first):
for tag in soup.findAll(lambda tag: tag.name.lower()=='img' and tag.has_key('src')):
iurl = tag['src']
img = Image()
img.open(iurl)
img.trim(0)
img.save(iurl)
myProcess = MerryProcess()
myProcess.optimizeLayout(soup)
if SHOWDEBUG0 == True:
if KEEPSTATS == True:
statinfo = 'generated stats:'
statinfo += str(mstat.stats(mstat.statslist))
print statinfo
statinfo = 'generated stats (for removed tags):'
statinfo += str(mstat.stats(mstat.removedtagslist))
print statinfo
#show all Debug info we forgot to report
#Using print to be sure that this text will not be added at the end of the log.
print '\n!!!!!unreported messages:\n(should be empty)\n'
mlog.showDebug()
return soup
feeds = [
@ -95,6 +127,291 @@ class AdvancedUserRecipe1306097511(BasicNewsRecipe):
(u'Familie', u'http://www.metronieuws.nl/rss.xml?c=1283166782-9'),
(u'Blogs', u'http://www.metronieuws.nl/rss.xml?c=1295586825-6'),
(u'Reizen', u'http://www.metronieuws.nl/rss.xml?c=1277377288-13'),
(u'Carrière', u'http://www.metronieuws.nl/rss.xml?c=1278070988-1'),
(u'Carri&egrave;re', u'http://www.metronieuws.nl/rss.xml?c=1278070988-1'),
(u'Sport', u'http://www.metronieuws.nl/rss.xml?c=1277377288-12')
]
class MerryPreProcess():
def replacePictures(self, soup):
#to be implemented
return soup
def optimizePicture(self,soup):
if SHOWDEBUG0 == True:
mlog.addDebug('start image optimize')
for tag in soup.findAll(lambda tag: tag.name.lower()=='img' and tag.has_key('src')):
iurl = tag['src']
img = Image()
img.open(iurl)
img.trim(0)
img.save(iurl)
if SHOWDEBUG0 == True:
mlog.addDebug('Images optimized')
mlog.showDebug()
return soup
class MerryExtract():
def safeRemovePart(self, killingSoup, soupIsArray):
if killingSoup and not killingSoup == None:
if SHOWDEBUG2 == True:
mlog.addTextAndTag(['items to remove'],[killingSoup])
try:
if soupIsArray == True:
for killer in killingSoup:
killer.extract()
else:
killingSoup.extract()
if SHOWDEBUG1 == True:
mlog.addDebug('tag extracted')
mlog.showDebug()
if KEEPSTATS == True:
try:
mstat.addstat(mstat.removedtagslist,str(killingSoup.name))
except:
mstat.addstat(mstat.removedtagslist,'unknown')
except:
if SHOWDEBUG1 == True:
mlog.addDebug('tag extraction failed')
mlog.showDebug()
if KEEPSTATS == True:
mstat.addstat(mstat.removedtagslist,'exception')
return False
else:
return False
return killingSoup
class MerryReplace():
myKiller = MerryExtract()
def replaceATag(self, soup):
anchors = []
anchors = soup.findAll('a')
if anchors and not (anchors == None or anchors == []):
try:
for link in anchors:
# print str(link)
if link and not link == None:
# print ('type: %s'%(str(type(link))))
# print ('link: %s' % (link))
myParent = link.parent
# print str('parent: %s'%(myParent))
try:
myIndex = link.parent.index(link)
hasIndex = True
except:
myIndex = 0
hasIndex = False
# print str('index %s'%(myIndex))
if not link.string == None:
# print 'link=notnone'
if hasIndex == True:
myParent.insert(myIndex, link.string)
else:
myParent.append(link.string)
else:
# print 'link=none'
myParent.insert(myIndex, link.contents)
self.myKiller.safeRemovePart(link, False)
else:
notshown = 'tag received is empty' # print
except:
notshown = 'tag received is empty' # print
notshown
return soup
class MerryProcess(BeautifulSoup):
myKiller = MerryExtract()
myReplacer = MerryReplace()
myPrepare = MerryPreProcess()
def optimizeLayout(self,soup):
self.myPrepare.optimizePicture(soup)
if SHOWDEBUG0 == True:
mlog.addDebug('End of Optimize Layout')
mlog.showDebug()
return soup
def insertFacts(self, soup):
allfacts = soup.findAll('div', {'class':re.compile('^article-box-fact.*$')})
if SHOWDEBUG0 == True:
mlog.addTextAndTag(['allfacts'],[allfacts])
mlog.showDebug()
if allfacts and not allfacts == None:
allfactsparent = soup.find('div', {'class':re.compile('^article-box-fact.*$')}).parent
if SHOWDEBUG0 == True:
mlog.addTextAndTag(['allfactsparent'],[allfactsparent])
mlog.showDebug()
for part in allfactsparent:
if not part in allfacts:
if SHOWDEBUG0 == True:
mlog.addTextAndTag(['FOUND A non-fact'],[part])
mlog.showDebug()
self.myKiller.safeRemovePart(part, True)
if SHOWDEBUG1 == True:
mlog.addTextAndTag(['New All Facts'],[allfacts])
mlog.showDebug()
articlefacts = soup.find('div', {'class':'article-box-fact column'})
errorOccured=False
if (articlefacts and not articlefacts==None):
try:
contenttag = soup.find('div', {'class':'article-body'})
if SHOWDEBUG0 == True:
mlog.addTextAndTag(['curcontag'],[contenttag])
mlog.showDebug()
foundrighttag = False
if contenttag and not contenttag == None:
foundrighttag = True
if SHOWDEBUG0 == True:
if errorOccured == False:
mlog.addTextAndTag(['type','curcontag (in while)'],[type(contenttag),contenttag])
else:
mlog.addDebug('Could not find right parent tag. Error Occured')
mlog.showDebug()
if foundrighttag == True:
contenttag.insert(0, allfactsparent)
if SHOWDEBUG2 == True:
mlog.addTextAndTag(['added parent'],[soup.prettify()])
mlog.showDebug()
except:
errorOccured=True
mlog.addTrace()
else:
errorOccured=True
if SHOWDEBUG0 == True and errorOccured == True:
mlog.addTextAndTag(['no articlefacts'],[articlefacts])
mlog.showDebug()
return soup
def previousNextSibRemover(self, soup, previous=True, soupIsArray=False):
findsibsof = soup
firstpart = previous
if findsibsof and not findsibsof == None:
if soupIsArray == True:
for foundsib in findsibsof:
self.previousNextSibRemover(foundsib, firstpart, soupIsArray=False)
else:
if firstpart == True and soupIsArray == False:
sibs = findsibsof.previousSiblingGenerator()
else:
sibs = findsibsof.nextSiblingGenerator()
for sib in sibs:
self.myKiller.safeRemovePart(sib, True)
else:
if SHOWDEBUG1 == True:
mlog.addDebug('Not any sib found')
return
def removeUnwantedTags(self,soup):
if SHOWDEBUG1 == True:
mlog.addTextAndTag(['Len of Soup before RemoveTagsByName'],[len(str(soup))])
mlog.showDebug()
self.removeTagsByName(soup)
if SHOWDEBUG1 == True:
mlog.addDebug('Len of Soup before firstandlastpart: %s' % len(str(soup)))
mlog.showDebug()
self.insertFacts(soup)
self.removeFirstAndLastPart(soup)
if SHOWDEBUG1 == True:
mlog.addDebug('Len of Soup before unwantedpart: %s' % len(str(soup)))
mlog.showDebug()
self.removeUnwantedParts(soup)
if SHOWDEBUG1 == True:
mlog.addDebug('Len of Soup before EmptyParts: %s' % len(str(soup)))
mlog.showDebug()
self.removeEmptyTags(soup)
if SHOWDEBUG1 == True:
mlog.addDebug('Len of Soup after EmptyParts: %s' % len(str(soup)))
mlog.showDebug()
self.myReplacer.replaceATag(soup)
return soup
def removeUnwantedParts(self, soup):
if SHOWDEBUG1 == True:
mlog.addDebug('Len of Soup before UnwantedID: %s' % len(str(soup)))
mlog.showDebug()
self.removeUnwantedTagsByID(soup)
if SHOWDEBUG1 == True:
mlog.addDebug('Len of Soup before Class: %s' % len(str(soup)))
mlog.showDebug()
self.removeUnwantedTagsByClass(soup)
if SHOWDEBUG1 == True:
mlog.addDebug('Len of Soup before Style: %s' % len(str(soup)))
mlog.showDebug()
self.removeUnwantedTagsByStyle(soup)
return soup
def removeUnwantedTagsByStyle(self,soup):
self.removeArrayOfTags(soup.findAll(attrs={'style' : re.compile("^(.*(display\s?:\s?none|img-mask|white)\s?;?.*)$")}))
if SHOWDEBUG0 == True:
mlog.addDebug('end remove by style')
return soup
def removeArrayOfTags(self,souparray):
return self.myKiller.safeRemovePart(souparray, True)
def removeUnwantedTagsByClass(self,soup):
if SHOWDEBUG0 == True:
mlog.addDebug('start remove by class')
self.removeArrayOfTags(soup.findAll("div", { "class" :re.compile('^(promo.*?|article-tools-below-title|metroCommentFormWrap|ad|share-tools|tools|header-links|related-links|padding-top-15)$')}))
return soup
def removeUnwantedTagsByID(self,soup):
defaultids = ['footer-extra',re.compile('^ad(\d+|adcomp.*?)?$'),'column-4-5','navigation','header',re.compile('^column-1-5-(top|bottom)$'),'footer','hidden_div','sidebar',re.compile('^article-\d$'),'comments','footer']
for removeid in defaultids:
if SHOWDEBUG1 == True:
mlog.addDebug('RemoveTagByID, tag: %s, Len of Soup: %s' % (str(removeid), len(str(soup))))
mlog.showDebug()
self.removeArrayOfTags(soup.findAll(id=removeid))
return soup
# def safeRemoveTag(self, subtree):
# return self.myKiller.safeRemovePart(subtree, True)
def removeTagsByName(self, soup):
self.myKiller.safeRemovePart(soup.script, True)
self.myKiller.safeRemovePart(soup.iframe, True)
self.myKiller.safeRemovePart(soup.style, True)
self.myKiller.safeRemovePart(soup.noscript, True)
return soup
def removeEmptyTags(self,soup,run=0):
if SHOWDEBUG0 == True:
mlog.addDebug('starting removeEmptyTags')
if SHOWDEBUG1 == True:
run += 1
mlog.addDebug(run)
if SHOWDEBUG2 == True:
mlog.addDebug(str(soup.prettify()))
mlog.showDebug()
emptymatches = re.compile('^(&nbsp;|\s|\n|\r|\t)*$')
emptytags = soup.findAll(lambda tag: tag.find(True) is None and (tag.string is None or tag.string.strip()=="" or tag.string.strip()==emptymatches) and not tag.isSelfClosing)
if emptytags and not (emptytags == None or emptytags == []):
if SHOWDEBUG1 == True:
mlog.addDebug('tags found')
mlog.addDebug(str(emptytags))
self.removeArrayOfTags(emptytags)
#recursive in case removing empty tag creates new empty tag
self.removeEmptyTags(soup, run=run)
else:
if SHOWDEBUG1 == True:
mlog.addDebug('no empty tags found')
mlog.showDebug()
if SHOWDEBUG0 == True:
if SHOWDEBUG2 == True:
mlog.addDebug('new soup:')
mlog.addDebug(str(soup.prettify()))
mlog.addDebug('RemoveEmptyTags Completed')
mlog.showDebug()
return soup
def removeFirstAndLastPart(self,soup):
def findparenttag(lookuptag):
if lookuptag and not lookuptag == None:
return lookuptag.findParents()
findtag = soup.find(id="date")
self.previousNextSibRemover(findtag, previous=True, soupIsArray=False)
self.previousNextSibRemover(findparenttag(findtag), previous=True, soupIsArray=True)
for endtag in [soup.find(id="share-and-byline"), soup.find("div", { "class" : "gallery-text" })]:
self.previousNextSibRemover(endtag, previous=False, soupIsArray=False)
self.previousNextSibRemover(findparenttag(endtag), previous=False, soupIsArray=True)
return soup

View File

@ -24,6 +24,7 @@ __Date__ = ''
'''
Change Log:
2011/12/01: take care of situation that in txt source parsing, the article content does start with special character u'\u3010'
2011/10/21: fix a bug that hi-res img is unavailable in pages parsed from source txt
2011/10/19: fix a bug in txt source parsing
2011/10/17: disable fetching of premium content, also improved txt source parsing
@ -533,12 +534,22 @@ class MPRecipe(BasicNewsRecipe):
new_raw_html = '<html><head><title>Untitled</title></head><body><div class="images">'
next_is_img_txt = False
title_started = False
title_break_reached = False
met_article_start_char = False
for item in splitter.split(raw_html):
item = item.strip()
if item.startswith(u'\u3010'):
met_article_start_char = True
new_raw_html = new_raw_html + '</div><div class="content"><p>' + item + '<p>\n'
# if title already reached but break between title and content not yet found, record title_break_reached
if title_started == True and title_break_reached == False and item == '':
title_break_reached = True
# if title reached and title_break_reached and met_article_start_char == False and item is not empty
# start content
elif title_started == True and title_break_reached == True and met_article_start_char == False:
if item <> '':
met_article_start_char = True
new_raw_html = new_raw_html + '</div><div class="content"><p>' + item + '<p>\n'
#if item.startswith(u'\u3010'):
# met_article_start_char = True
# new_raw_html = new_raw_html + '</div><div class="content"><p>' + item + '<p>\n'
else:
if next_is_img_txt == False:
if item.startswith("=@"):
@ -787,3 +798,4 @@ class MPRecipe(BasicNewsRecipe):
with nested(open(opf_path, 'wb'), open(ncx_path, 'wb')) as (opf_file, ncx_file):
opf.render(opf_file, ncx_file)

View File

@ -283,8 +283,7 @@ class Install(Develop):
class Sdist(Command):
description = 'Create a source distribution'
DEST = os.path.join('dist', '%s-%s.tar.gz'%(__appname__, __version__))
DEST = os.path.join('dist', '%s-%s.tar.xz'%(__appname__, __version__))
def run(self, opts):
if not self.e(self.d(self.DEST)):
@ -313,7 +312,7 @@ class Sdist(Command):
shutil.copy2(f, dest)
self.info('\tCreating tarfile...')
subprocess.check_call(['tar', '-czf', self.a(self.DEST),
subprocess.check_call(['tar', '-cJf', self.a(self.DEST),
'calibre'], cwd=self.d(tdir))
def clean(self):

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 05:54+0000\n"
"Last-Translator: Ysbeer <Unknown>\n"
"Language-Team: Afrikaans <i18n@af.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:35+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:05+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: af\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:14+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Amharic\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:36+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:05+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 05:57+0000\n"
"Last-Translator: Mohammad Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic <support@arabeyes.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-09-28 04:36+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:06+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: ar\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 05:38+0000\n"
"Last-Translator: Vasif İsmayıloğlu MD <Unknown>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimail.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:37+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:06+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:26+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Bulgarian <dict@fsa-bg.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-09-28 04:39+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:08+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: bg\n"
#. name for aaa
@ -17954,8 +17954,8 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgstr "Долно саксонски"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:18+0000\n"
"Last-Translator: runa <runabh@gmail.com>\n"
"Language-Team: Bengali (India) <discuss@lists.ankur.org.in>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:17+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:46+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17956,7 +17956,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:43+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Breton <brenux@free.fr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:38+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:08+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: br\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 07:15+0000\n"
"Last-Translator: Nesiren Armin <Unknown>\n"
"Language-Team: Bosanski <kde@lugbih.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-09-28 04:38+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:07+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17954,7 +17954,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:37+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Blin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:40+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:09+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-11-22 16:45+0000\n"
"Last-Translator: Ferran Rius <frius64@hotmail.com>\n"
"Language-Team: Catalan <linux@softcatala.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-23 05:19+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:10+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: ca\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:24+0000\n"
"Last-Translator: Reşat SABIQ <tilde.birlik@gmail.com>\n"
"Language-Team: Crimean Tatar <tilde-birlik-tercime@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:41+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:10+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: crh\n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr "Ndoola"
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:51+0000\n"
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech@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-09-28 04:41+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:11+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: cs\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 07:08+0000\n"
"Last-Translator: Dafydd Tomos <Unknown>\n"
"Language-Team: Welsh <cy@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-09-28 05:14+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:44+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: cy\n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -16,15 +16,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:12+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:42+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:11+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: da\n"
#. name for aaa
@ -17961,7 +17961,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -17,15 +17,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\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"
"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-09-28 04:45+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:15+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: de\n"
#. name for aaa
@ -17981,7 +17981,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:41+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Greek <debian-l10n-greek@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-09-28 04:48+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:17+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: el\n"
#. name for aaa
@ -17958,7 +17958,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:58+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:43+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:13+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: eo\n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -7,15 +7,15 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-11-22 19:47+0000\n"
"Last-Translator: Fitoschido <fitoschido@gmail.com>\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-11-26 08:48+0000\n"
"Last-Translator: Jellby <Unknown>\n"
"Language-Team: Spanish <es@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-11-23 05:19+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-27 05:24+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#. name for aaa
msgid "Ghotuo"
@ -4879,7 +4879,7 @@ msgstr "Chino mindong"
#. name for cdr
msgid "Cinda-Regi-Tiyal"
msgstr "Cinda-Regi-Tiyal"
msgstr "Cinda-regi-tiyal"
#. name for cds
msgid "Chadian Sign Language"
@ -4895,7 +4895,7 @@ msgstr "Koda"
#. name for cea
msgid "Chehalis; Lower"
msgstr ""
msgstr "Chehalis inferior"
#. name for ceb
msgid "Cebuano"
@ -4919,7 +4919,7 @@ msgstr "Centúúm"
#. name for cfa
msgid "Dijim-Bwilim"
msgstr "Dijim-Bwilim"
msgstr "Dijim-bwilim"
#. name for cfd
msgid "Cara"
@ -4927,7 +4927,7 @@ msgstr "Cara"
#. name for cfg
msgid "Como Karim"
msgstr "Como Karim"
msgstr "Como karim"
#. name for cfm
msgid "Chin; Falam"
@ -5047,7 +5047,7 @@ msgstr ""
#. name for cia
msgid "Cia-Cia"
msgstr "Cia-Cia"
msgstr "Cia-cia"
#. name for cib
msgid "Gbe; Ci"
@ -5079,7 +5079,7 @@ msgstr "Cimbrio"
#. name for cin
msgid "Cinta Larga"
msgstr "Cinta Larga"
msgstr "Cinta larga"
#. name for cip
msgid "Chiapanec"
@ -5107,7 +5107,7 @@ msgstr "Chru"
#. name for cjh
msgid "Chehalis; Upper"
msgstr ""
msgstr "Chehalis superior"
#. name for cji
msgid "Chamalal"
@ -5127,7 +5127,7 @@ msgstr "Chenapian"
#. name for cjo
msgid "Ashéninka Pajonal"
msgstr "Ashéninka Pajonal"
msgstr "Ashéninka pajonal"
#. name for cjp
msgid "Cabécar"
@ -5195,11 +5195,11 @@ msgstr "Caka"
#. name for cky
msgid "Cakfem-Mushere"
msgstr "Cakfem-Mushere"
msgstr "Cakfem-mushere"
#. name for ckz
msgid "Cakchiquel-Quiché Mixed Language"
msgstr "Cakchiquel-Quiché idioma mixto"
msgstr "Idioma mixto cakchiquel-quiché"
#. name for cla
msgid "Ron"
@ -5227,7 +5227,7 @@ msgstr "Chakali"
#. name for clk
msgid "Idu-Mishmi"
msgstr "Idu-Mishmi"
msgstr "Idu-mishmi"
#. name for cll
msgid "Chala"
@ -5267,7 +5267,7 @@ msgstr "Mongol clásico"
#. name for cmi
msgid "Emberá-Chamí"
msgstr "Emberá-Chamí"
msgstr "Emberá-chamí"
#. name for cml
msgid "Campalagian"
@ -5367,7 +5367,7 @@ msgstr "Cocopa"
#. name for cod
msgid "Cocama-Cocamilla"
msgstr "Cocama-Cocamilla"
msgstr "Cocama-cocamilla"
#. name for coe
msgid "Koreguaje"
@ -5383,7 +5383,7 @@ msgstr "Chong"
#. name for coh
msgid "Chonyi-Dzihana-Kauma"
msgstr "Chonyi-Dzihana-Kauma"
msgstr "Chonyi-dzihana-kauma"
#. name for coj
msgid "Cochimi"
@ -5395,7 +5395,7 @@ msgstr ""
#. name for col
msgid "Columbia-Wenatchi"
msgstr "Columbia-Wenatchi"
msgstr "Columbia-wenatchi"
#. name for com
msgid "Comanche"
@ -5435,7 +5435,7 @@ msgstr "Wamey"
#. name for cov
msgid "Cao Miao"
msgstr "Cao Miao"
msgstr "Cao miao"
#. name for cow
msgid "Cowlitz"
@ -5463,7 +5463,7 @@ msgstr ""
#. name for cpc
msgid "Ajyíninka Apurucayali"
msgstr "Ajyíninka Apurucayali"
msgstr "Ajyíninka apurucayali"
#. name for cpg
msgid "Greek; Cappadocian"
@ -5635,7 +5635,7 @@ msgstr ""
#. name for csk
msgid "Jola-Kasa"
msgstr "Jola-Kasa"
msgstr "Jola-kasa"
#. name for csl
msgid "Chinese Sign Language"
@ -5715,7 +5715,7 @@ msgstr "Chhintange"
#. name for cto
msgid "Emberá-Catío"
msgstr "Emberá-Catío"
msgstr "Emberá-catío"
#. name for ctp
msgid "Chatino; Western Highland"
@ -5763,7 +5763,7 @@ msgstr "Cuiba"
#. name for cuj
msgid "Mashco Piro"
msgstr "Mashco Piro"
msgstr "Mashco piro"
#. name for cuk
msgid "Kuna; San Blas"
@ -5799,7 +5799,7 @@ msgstr ""
#. name for cuu
msgid "Tai Ya"
msgstr "Tai Ya"
msgstr "Tai ya"
#. name for cuv
msgid "Cuvok"
@ -5951,7 +5951,7 @@ msgstr "Dargwa"
#. name for das
msgid "Daho-Doo"
msgstr "Daho-Doo"
msgstr "Daho-doo"
#. name for dau
msgid "Daju; Dar Sila"
@ -5975,7 +5975,7 @@ msgstr "Dao"
#. name for dba
msgid "Bangi Me"
msgstr "Bangi Me"
msgstr "Bangi me"
#. name for dbb
msgid "Deno"
@ -6087,7 +6087,7 @@ msgstr ""
#. name for ddw
msgid "Dawera-Daweloor"
msgstr "Dawera-Daweloor"
msgstr "Dawera-daweloor"
#. name for dec
msgid "Dagik"
@ -6175,7 +6175,7 @@ msgstr ""
#. name for dgd
msgid "Dagaari Dioula"
msgstr "Dagaari Dioula"
msgstr "Dagaari dioula"
#. name for dge
msgid "Degenan"
@ -6363,7 +6363,7 @@ msgstr "Dinka noroccidental"
#. name for dix
msgid "Dixon Reef"
msgstr "Dixon Reef"
msgstr "Dixon reef"
#. name for diy
msgid "Diuwe"
@ -6691,7 +6691,7 @@ msgstr "Darling"
#. name for drn
msgid "Damar; West"
msgstr ""
msgstr "Damar occidental"
#. name for dro
msgid "Melanau; Daro-Matu"
@ -6811,7 +6811,7 @@ msgstr "Duna"
#. name for dud
msgid "Hun-Saare"
msgstr "Hun-Saare"
msgstr "Hun-saare"
#. name for due
msgid "Agta; Umiray Dumaget"
@ -6827,7 +6827,7 @@ msgstr "Duruma"
#. name for duh
msgid "Dungra Bhil"
msgstr "Dungra Bhil"
msgstr "Dungra bhil"
#. name for dui
msgid "Dumun"
@ -6851,7 +6851,7 @@ msgstr "Neerlandés medio (ca. 1050-1350)"
#. name for dun
msgid "Dusun Deyah"
msgstr "Dusun Deyah"
msgstr "Dusun deyah"
#. name for duo
msgid "Agta; Dupaninan"
@ -6863,7 +6863,7 @@ msgstr "Duano"
#. name for duq
msgid "Dusun Malang"
msgstr "Dusun Malang"
msgstr "Dusun malang"
#. name for dur
msgid "Dii"
@ -6883,7 +6883,7 @@ msgstr "Duvle"
#. name for duw
msgid "Dusun Witu"
msgstr "Dusun Witu"
msgstr "Dusun witu"
#. name for dux
msgid "Duungooma"
@ -6915,7 +6915,7 @@ msgstr "Dawro"
#. name for dws
msgid "Dutton World Speedwords"
msgstr "Dutton World Speedwords (lengua de compresión de palabras de Dutton)"
msgstr "Speedwords mundial Dutton"
#. name for dww
msgid "Dawawa"
@ -6951,7 +6951,7 @@ msgstr "Dyangadi"
#. name for dyo
msgid "Jola-Fonyi"
msgstr "Jola-Fonyi"
msgstr "Jola-fonyi"
#. name for dyu
msgid "Dyula"
@ -6995,7 +6995,7 @@ msgstr "Bontok oriental"
#. name for ebo
msgid "Teke-Ebo"
msgstr "Teke-Ebo"
msgstr "Teke-ebo"
#. name for ebr
msgid "Ebrié"
@ -7007,7 +7007,7 @@ msgstr "Embu"
#. name for ecr
msgid "Eteocretan"
msgstr "Eteocretan"
msgstr "Eteocretense"
#. name for ecs
msgid "Ecuadorian Sign Language"
@ -17950,8 +17950,8 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgstr ""
msgid "German; Low"
msgstr "Bajo alemán"
#. name for ndt
msgid "Ndunga"

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 07:11+0000\n"
"Last-Translator: Tõivo Leedjärv <Unknown>\n"
"Language-Team: Estonian <gnome-et@linux.ee>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:43+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:13+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: et\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 15:37+0000\n"
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
"Language-Team: Euskara <itzulpena@comtropos.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:37+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:07+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: eu\n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:19+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Persian <translation-team-fa@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:02+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:32+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: fa\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:07+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:44+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:14+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: fi\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:36+0000\n"
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
"Language-Team: French <debian-l10n-french@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-09-28 04:45+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:14+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: fr\n"
#. name for aaa
@ -17960,8 +17960,8 @@ msgid "Ndoola"
msgstr "ndoola"
#. name for nds
msgid "Saxon; Low"
msgstr "bas Saxon"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -14,15 +14,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 15:51+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Irish <ga@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-09-28 04:46+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:16+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: ga\n"
#. name for aaa
@ -17996,7 +17996,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:12+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Geez\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:46+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:15+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:34+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Galician <proxecto@trasno.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:47+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:16+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: gl\n"
#. name for aaa
@ -17955,8 +17955,8 @@ msgid "Ndoola"
msgstr "Ndoola"
#. name for nds
msgid "Saxon; Low"
msgstr "Saxón baixo"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:46+0000\n"
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
"Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:48+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:18+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: gu\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 06:12+0000\n"
"Last-Translator: Alastair McKinstry <Unknown>\n"
"Language-Team: Hebrew <kde-il@yahoogroups.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:49+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:18+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: he\n"
#. name for aaa
@ -17954,7 +17954,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:03+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Hindi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:49+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:19+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 06:17+0000\n"
"Last-Translator: Alastair McKinstry <Unknown>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:06+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:36+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: hr\n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-11-12 07:52+0000\n"
"Last-Translator: Devilinside <Unknown>\n"
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\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-13 05:48+0000\n"
"X-Generator: Launchpad (build 14277)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:19+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"X-Poedit-Country: HUNGARY\n"
"Language: hu\n"
"X-Poedit-Language: Hungarian\n"
@ -18009,7 +18009,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:05+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Indonesia <de@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-09-28 04:51+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:20+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17954,7 +17954,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 09:09+0000\n"
"Last-Translator: Alastair McKinstry <Unknown>\n"
"Language-Team: Icelandic <kde-isl@molar.is>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:50+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:20+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: is\n"
#. name for aaa
@ -17954,7 +17954,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:49+0000\n"
"Last-Translator: Milo Casagrande <milo@casagrande.name>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:51+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:21+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: it\n"
#. name for aaa
@ -17956,8 +17956,8 @@ msgid "Ndoola"
msgstr "Ndoola"
#. name for nds
msgid "Saxon; Low"
msgstr "Sassone basso"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 15:44+0000\n"
"Last-Translator: IIDA Yosiaki <iida@gnu.org>\n"
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:52+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:21+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: ja\n"
#. name for aaa
@ -18323,7 +18323,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 15:57+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Kannada <debian-l10n-kannada@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-09-28 04:52+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:22+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: kn\n"
#. name for aaa
@ -17953,8 +17953,8 @@ msgid "Ndoola"
msgstr "ಎನ್‌ಡೂಲಾ"
#. name for nds
msgid "Saxon; Low"
msgstr "ಸ್ಯಾಕ್ಸೋನ್; ಲೋ"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 04:09+0000\n"
"Last-Translator: Eungkyu Song <Unknown>\n"
"Language-Team: Korean <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:54+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:24+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: ko\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:38+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Konkani\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:53+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:23+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:08+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:55+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:25+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: lt\n"
#. name for aaa
@ -17954,8 +17954,8 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgstr "Saksų žemaičių"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 09:02+0000\n"
"Last-Translator: Alastair McKinstry <Unknown>\n"
"Language-Team: Latvian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:55+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:24+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 03:56+0000\n"
"Last-Translator: James Gasson <Unknown>\n"
"Language-Team: Maori <james.gasson@clear.net.nz>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:56+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:26+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: mi\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 03:58+0000\n"
"Last-Translator: Alastair McKinstry <Unknown>\n"
"Language-Team: Macedonian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:56+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:25+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:18+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Mongolian <mn@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-09-28 04:58+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:28+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: mn\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:21+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Marathi <fedora-trans-mr@redhat.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:57+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:26+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: mr\n"
#. name for aaa
@ -17955,8 +17955,8 @@ msgid "Ndoola"
msgstr "न्दुला"
#. name for nds
msgid "Saxon; Low"
msgstr "सॉक्सोन; लो"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 06:24+0000\n"
"Last-Translator: Hasbullah Bin Pit <Unknown>\n"
"Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.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-09-28 04:57+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:27+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17957,7 +17957,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:49+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Maltese <mt@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-09-28 04:58+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:28+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: mt\n"
#. name for aaa
@ -17954,7 +17954,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:46+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Norsk bokmål\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:59+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:29+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-11-03 23:08+0000\n"
"Last-Translator: drMerry <Unknown>\n"
"Language-Team: Dutch <vertaling@vrijschrift.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-05 04:47+0000\n"
"X-Generator: Launchpad (build 14231)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:12+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: nl\n"
#. name for aaa
@ -17955,8 +17955,8 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgstr "Saksisch; laag"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:45+0000\n"
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:59+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:29+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: nn\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 05:46+0000\n"
"Last-Translator: Jerry Thobejane <Unknown>\n"
"Language-Team: Northern Sotho <sepedi@translate.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:00+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:30+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: nso\n"
#. name for aaa
@ -17951,7 +17951,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:43+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: OCCITAN <laborde@crpp.u-bordeaux.fr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:01+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:31+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:01+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Oriya <translation-team-or@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:01+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:31+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: or\n"
#. name for aaa
@ -17952,8 +17952,8 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgstr "ସାକ୍ସନ; ଧୀର"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -13,15 +13,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:54+0000\n"
"Last-Translator: A S Alam <aalam@users.sf.net>\n"
"Language-Team: Punjabi <punjabi-l10n@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:02+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:32+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: pa\n"
#. name for aaa
@ -17957,8 +17957,8 @@ msgid "Ndoola"
msgstr "ਨਡੂਲਾ"
#. name for nds
msgid "Saxon; Low"
msgstr "ਸੈਕਸੋਨ; ਲੋ"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:01+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:03+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:33+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: pl\n"
#. name for aaa
@ -17956,8 +17956,8 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgstr "dolnosaksoński"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 05:58+0000\n"
"Last-Translator: Alastair McKinstry <Unknown>\n"
"Language-Team: Pushto\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:04+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:34+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:52+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Portuguese <pt@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-09-28 05:04+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:34+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: pt\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:27+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Brazilian Portuguese\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:17+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:47+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 05:33+0000\n"
"Last-Translator: Alastair McKinstry <Unknown>\n"
"Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:05+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:35+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: ro\n"
"PO-Creation-Date: 2000-09-24 15:45+0300\n"
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:14+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Russian <debian-l10n-russian@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-09-28 05:05+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:35+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: ru\n"
#. name for aaa
@ -17956,7 +17956,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:15+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 04:53+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:22+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: rw\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 05:52+0000\n"
"Last-Translator: Alastair McKinstry <Unknown>\n"
"Language-Team: Slovak <sk-i18n@linux.sk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:07+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:37+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: sk\n"
#. name for aaa
@ -17954,7 +17954,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 15:39+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:08+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:37+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: sl\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 15:42+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Serbian <gnu@prevod.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-09-28 05:06+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:36+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: sr\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:43+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Serbian <gnu@prevod.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-09-28 05:19+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:49+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: sr\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -29,15 +29,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:53+0000\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:09+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:39+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: sv\n"
#. name for aaa
@ -18012,7 +18012,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:31+0000\n"
"Last-Translator: Felix <ifelix25@gmail.com>\n"
"Language-Team: Tamil <gnome-tamil-translation@googlegroups.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:09+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:39+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"X-Poedit-Country: INDIA\n"
"Language: ta\n"
"X-Poedit-Language: Tamil\n"
@ -17958,8 +17958,8 @@ msgid "Ndoola"
msgstr "நடூலா"
#. name for nds
msgid "Saxon; Low"
msgstr "சாக்ஸோன்; குறைந்த"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:26+0000\n"
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:10+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:40+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: th\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:09+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Tigrinya\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:12+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:41+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:04+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Tigre\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:11+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:41+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-11-11 00:16+0000\n"
"Last-Translator: kulkke <Unknown>\n"
"Language-Team: Turkish <gnome-turk@gnome.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-12 04:48+0000\n"
"X-Generator: Launchpad (build 14277)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:42+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: tr\n"
#. name for aaa
@ -17958,7 +17958,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 17:53+0000\n"
"Last-Translator: al Beri <tatarish.l10n@gmail.com>\n"
"Language-Team: Tatarish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:10+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:40+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 15:33+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:13+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:43+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: uk\n"
#. name for aaa
@ -17955,8 +17955,8 @@ msgid "Ndoola"
msgstr "ндоола"
#. name for nds
msgid "Saxon; Low"
msgstr "саксонська (нижня)"
msgid "German; Low"
msgstr ""
#. name for ndt
msgid "Ndunga"

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 07:51+0000\n"
"Last-Translator: Fhatuwani Rambau <Unknown>\n"
"Language-Team: Venda <venda@translate.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:13+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:43+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: ve\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 16:56+0000\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:14+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:44+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: vi\n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 15:35+0000\n"
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
"Language-Team: Walloon <linux-wa@walon.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-09-28 05:15+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:45+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 05:51+0000\n"
"Last-Translator: Antoinette Dekeni <Unknown>\n"
"Language-Team: Xhosa <xhosa@translate.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:15+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:45+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: xh\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-09-27 18:09+0000\n"
"Last-Translator: LI Daobing <lidaobing@gmail.com>\n"
"Language-Team: Chinese (simplified) <translation-team-zh-"
@ -18,8 +18,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:18+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:48+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: zh_CN\n"
#. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 03:30+0000\n"
"Last-Translator: Joe Man <Unknown>\n"
"Language-Team: Traditional Chinese <zh-l10n@linux.org.tw>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:18+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:48+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: \n"
#. name for aaa
@ -17952,7 +17952,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n"
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
"PO-Revision-Date: 2011-08-27 08:38+0000\n"
"Last-Translator: Thobile Mhlongo <Unknown>\n"
"Language-Team: Zulu <zulu@translate.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-09-28 05:16+0000\n"
"X-Generator: Launchpad (build 14049)\n"
"X-Launchpad-Export-Date: 2011-11-26 05:46+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Language: zu\n"
#. name for aaa
@ -17953,7 +17953,7 @@ msgid "Ndoola"
msgstr ""
#. name for nds
msgid "Saxon; Low"
msgid "German; Low"
msgstr ""
#. name for ndt

View File

@ -25,12 +25,12 @@ MOBILEREAD = 'ftp://dev.mobileread.com/calibre/'
def installers():
installers = list(map(installer_name, ('dmg', 'msi', 'tar.bz2')))
installers.append(installer_name('tar.bz2', is64bit=True))
installers.insert(0, 'dist/%s-%s.tar.gz'%(__appname__, __version__))
installers.insert(0, 'dist/%s-%s.tar.xz'%(__appname__, __version__))
installers.append('dist/%s-portable-%s.zip'%(__appname__, __version__))
return installers
def installer_description(fname):
if fname.endswith('.tar.gz'):
if fname.endswith('.tar.xz'):
return 'Source code'
if fname.endswith('.tar.bz2'):
bits = '32' if 'i686' in fname else '64'
@ -117,7 +117,7 @@ class UploadToGoogleCode(Command): # {{{
def re_upload(self):
fnames = set([os.path.basename(x) for x in installers() if not
x.endswith('.tar.gz') and os.path.exists(x)])
x.endswith('.tar.xz') and os.path.exists(x)])
existing = set(self.old_files.keys()).intersection(fnames)
br = self.login_to_gmail()
for x in fnames:
@ -134,17 +134,19 @@ class UploadToGoogleCode(Command): # {{{
def upload_one(self, fname):
self.info('\nUploading', fname)
typ = 'Type-' + ('Source' if fname.endswith('.gz') else 'Archive' if
typ = 'Type-' + ('Source' if fname.endswith('.xz') else 'Archive' if
fname.endswith('.zip') else 'Installer')
ext = os.path.splitext(fname)[1][1:]
op = 'OpSys-'+{'msi':'Windows','zip':'Windows',
'dmg':'OSX','bz2':'Linux','gz':'All'}[ext]
'dmg':'OSX','bz2':'Linux','xz':'All'}[ext]
desc = installer_description(fname)
start = time.time()
for i in range(5):
try:
path = self.upload(os.path.abspath(fname), desc,
labels=[typ, op, 'Featured'])
except KeyboardInterrupt:
raise SystemExit(1)
except:
import traceback
traceback.print_exc()
@ -169,8 +171,10 @@ class UploadToGoogleCode(Command): # {{{
bname = os.path.basename(fname)
if bname in self.old_files:
path = 'http://calibre-ebook.googlecode.com/files/'+bname
self.info('%s already uploaded, skipping. Assuming URL is: %s',
bname, path)
self.info(
'%s already uploaded, skipping. Assuming URL is: %s'%(
bname, path))
self.old_files.pop(bname)
else:
path = self.upload_one(fname)
self.paths[bname] = path
@ -326,6 +330,8 @@ class UploadToSourceForge(Command): # {{{
check_call(['rsync', '-z', '--progress', '-e', 'ssh -x', x,
'%s,%s@frs.sourceforge.net:%s'%(self.USERNAME, self.PROJECT,
self.rdir+'/')])
except KeyboardInterrupt:
raise SystemExit(1)
except:
print ('\nUpload failed, trying again in 30 seconds')
time.sleep(30)
@ -469,11 +475,11 @@ class UploadToServer(Command): # {{{
description = 'Upload miscellaneous data to calibre server'
def run(self, opts):
check_call('ssh divok rm -f %s/calibre-\*.tar.gz'%DOWNLOADS, shell=True)
#check_call('scp dist/calibre-*.tar.gz divok:%s/'%DOWNLOADS, shell=True)
check_call('gpg --armor --detach-sign dist/calibre-*.tar.gz',
check_call('ssh divok rm -f %s/calibre-\*.tar.xz'%DOWNLOADS, shell=True)
#check_call('scp dist/calibre-*.tar.xz divok:%s/'%DOWNLOADS, shell=True)
check_call('gpg --armor --detach-sign dist/calibre-*.tar.xz',
shell=True)
check_call('scp dist/calibre-*.tar.gz.asc divok:%s/signatures/'%DOWNLOADS,
check_call('scp dist/calibre-*.tar.xz.asc divok:%s/signatures/'%DOWNLOADS,
shell=True)
check_call('ssh divok bzr update /usr/local/calibre',
shell=True)

View File

@ -4,7 +4,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = u'calibre'
numeric_version = (0, 8, 28)
numeric_version = (0, 8, 29)
__version__ = u'.'.join(map(unicode, numeric_version))
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"

View File

@ -246,14 +246,15 @@ class DevicePlugin(Plugin):
the user.
:param connected_device: The device that we are trying to open. It is
a tuple of (vendor id, product id, bcd, manufacturer name, product
name, device serial number). However, some device have no serial number
and on windows only the first three fields are present, the rest are
None.
a tuple of (vendor id, product id, bcd, manufacturer name, product
name, device serial number). However, some devices have no serial
number and on windows only the first three fields are present, the
rest are None.
:param library_uuid: The UUID of the current calibre library. Can be
None if there is no library (for example when used from the command
line.
None if there is no library (for example when used from the command
line).
'''
raise NotImplementedError()

View File

@ -89,6 +89,10 @@ Then just add this HTML file to the GUI and use the convert button to create you
.. note:: By default, when adding HTML files, |app| follows links in the files in *depth first* order. This means that if file A.html links to B.html and C.html and D.html, but B.html also links to D.html, then the files will be in the order A.html, B.html, D.html, C.html. If instead you want the order to be A.html, B.html, C.html, D.html then you must tell |app| to add your files in *breadth first* order. Do this by going to Preferences->Plugins and customizing the HTML to ZIP plugin.
The EPUB I produced with |app| is not valid?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|app| does not guarantee that an EPUB produced by it is valid. The only guarantee it makes is that if you feed it valid XHTML 1.1 + CSS 2.1 it will output a valid EPUB. |app| is designed for ebook consumers, not producers. It tries hard to ensure that EPUBs it produces actually work as intended on a wide variety of devices, a goal that is incompatible with producing valid EPUBs, and one that is far more important to the vast majority of its users. If you need a tool that always produces valid EPUBs, |app| is not for you.
How do I use some of the advanced features of the conversion tools?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+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-11-24 04:39+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:44+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -26,8 +26,8 @@ msgstr "Doen absolute niks"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -930,17 +930,17 @@ msgstr ""
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr ""
@ -17828,7 +17828,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -17836,7 +17836,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -17844,7 +17844,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -17852,7 +17852,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -17861,7 +17861,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+0000\n"
"PO-Revision-Date: 2011-11-08 17:08+0000\n"
"Last-Translator: shtywi@lttnet.net <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-11-24 04:39+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:45+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:182
msgid "&Monospace family:"
@ -63,8 +63,8 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -1002,7 +1002,7 @@ msgstr "تصحيح السجل"
msgid "Communicate with Android phones."
msgstr "التواصل مع هواتف أندرويد ."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
@ -1010,11 +1010,11 @@ msgstr ""
"مفصولة بفواصل قائمة الدلائل إلى إرسال البريد إلى الكتب على الجهاز. وسيتم "
"استخدام أول واحد موجود"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr "تواصل معا هواتف S60."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr ""
@ -18146,7 +18146,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -18154,7 +18154,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -18162,7 +18162,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -18170,7 +18170,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -18179,7 +18179,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+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-11-24 04:40+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:45+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -26,8 +26,8 @@ msgstr "Nun fai nada"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -936,17 +936,17 @@ msgstr ""
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr ""
@ -17831,7 +17831,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -17839,7 +17839,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -17847,7 +17847,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -17855,7 +17855,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -17864,7 +17864,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+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-11-24 04:40+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:45+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -26,8 +26,8 @@ msgstr "Heç bir şey etmir"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -934,17 +934,17 @@ msgstr ""
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr ""
@ -17829,7 +17829,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -17837,7 +17837,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -17845,7 +17845,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -17853,7 +17853,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -17862,7 +17862,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre 0.4.51\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+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-11-24 04:41+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:47+0000\n"
"X-Generator: Launchpad (build 14381)\n"
"Generated-By: pygettext.py 1.5\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
@ -26,8 +26,8 @@ msgstr "Не прави абсолютно нищо"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -982,7 +982,7 @@ msgstr ""
msgid "Communicate with Android phones."
msgstr "Комуникирай с Android устройства"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
@ -990,11 +990,11 @@ msgstr ""
"Списък с деректориите за изпращане на електронни книги на устройството, "
"разделен със запетайки. Ще бъде използван първият съществуващ."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr "Комуникирай със S60 устройства"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr "Сподели с WebOS таблети"
@ -17911,7 +17911,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -17919,7 +17919,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -17927,7 +17927,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -17935,7 +17935,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -17944,7 +17944,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+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-11-24 04:41+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:46+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -26,8 +26,8 @@ msgstr "আসলে কিছুই করে না"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -930,17 +930,17 @@ msgstr ""
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr ""
@ -17825,7 +17825,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -17833,7 +17833,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -17841,7 +17841,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -17849,7 +17849,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -17858,7 +17858,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+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-11-24 04:41+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:46+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -26,8 +26,8 @@ msgstr "Ne ra netra da vat"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -933,17 +933,17 @@ msgstr ""
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr ""
@ -17831,7 +17831,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -17839,7 +17839,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -17847,7 +17847,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -17855,7 +17855,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -17864,7 +17864,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+0000\n"
"PO-Revision-Date: 2011-08-05 17:03+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\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: 2011-11-24 04:41+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:46+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -27,8 +27,8 @@ msgstr "Radi apsolutno ništa"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -931,17 +931,17 @@ msgstr ""
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr ""
@ -17826,7 +17826,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -17834,7 +17834,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -17842,7 +17842,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -17850,7 +17850,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -17859,7 +17859,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -10,16 +10,16 @@ msgid ""
msgstr ""
"Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"PO-Revision-Date: 2011-11-20 16:52+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+0000\n"
"PO-Revision-Date: 2011-11-25 13:21+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-11-24 04:42+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:47+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -29,8 +29,8 @@ msgstr "No fa res"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -994,7 +994,7 @@ msgstr "Registre de depuració"
msgid "Communicate with Android phones."
msgstr "Comunica't amb telèfons Android"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
@ -1002,11 +1002,11 @@ msgstr ""
"Llista de carpetes del dispositiu separades per comes on s'enviaran els "
"llibres. Es farà servir la primera que ja existeixi al dispositiu."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr "Comunica't amb telèfons S60."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr "Comunica't amb tauletes tàctils WebOS."
@ -1407,7 +1407,7 @@ msgstr "Comunica't amb un lector Elonex EB 511."
#: /home/kovid/work/calibre/src/calibre/devices/hanvon/driver.py:170
msgid "Communicate with the Cybook Odyssey eBook reader."
msgstr ""
msgstr "Comunica't amb un lector Cybook Odyssey."
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
@ -1715,7 +1715,7 @@ msgstr "Comunica't amb un lector Nook."
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:84
msgid "Communicate with the Nook Color, TSR and Tablet eBook readers."
msgstr ""
msgstr "Comunica't amb un lector Nook Color, TSR o Tablet."
#: /home/kovid/work/calibre/src/calibre/devices/nuut2/driver.py:17
msgid "Communicate with the Nuut2 eBook reader."
@ -20440,7 +20440,7 @@ msgstr ""
"«llista2» estan separats pel «separador», de la mateixa manera que a la "
"llista obtinguda."
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -20453,7 +20453,7 @@ msgstr ""
"estan separats pel «separador», de la mateixa manera que a la llista "
"obtinguda."
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -20466,7 +20466,7 @@ msgstr ""
"estan separats pel «separador», de la mateixa manera que a la llista "
"obtinguda."
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -20479,7 +20479,7 @@ msgstr ""
"«llista» estan separats pel «separador», de la mateixa manera que a la "
"llista obtinguda."
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -20494,7 +20494,7 @@ msgstr ""
"les llistes no és rellevant. La comparació no diferencia majúscules i "
"minúscules."
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "
@ -21680,6 +21680,26 @@ msgid ""
"interface language is used. The setting title_sort_articles is ignored\n"
"(present only for legacy reasons)."
msgstr ""
"Llista de paraules que es consideraran «articles» en calcular les cadenes "
"d'odre\n"
"dels títols. Els articles depenen segons la llengua. Per defecte el calibre "
"utilitza\n"
"una combinació d'articles de l'anglès i la llengua que està establerta per a "
"la\n"
"interfície d'usuari del calibre. A més, s'utilitza la llengua del llibre en "
"alguns\n"
"contexts que la llengua del llibre està disponible. Podeu canviar la llista "
"dels\n"
"articles per a una llengua determinada o afegir una llengua nova editant\n"
"«per_language_title_sort_articles». Perquè el calibre utilitzi una altra "
"llengua \n"
"que la de la interfície editeu «default_language_for_title_sort». Per "
"exemple,\n"
"per utilizar l'alemany, establiu-ho a «deu». El valor «None» indica que "
"s'utilitza\n"
"la llengua de la interfície. S'ignora el paràmetre «title_sort_articles» "
"(present\n"
"només com a herència de versions antigues)."
#: /home/kovid/work/calibre/resources/default_tweaks.py:248
msgid "Specify a folder calibre should connect to at startup"

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+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-11-24 04:42+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:47+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -26,8 +26,8 @@ msgstr "Nedělá vůbec nic"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -970,7 +970,7 @@ msgstr "Protokol ladění"
msgid "Communicate with Android phones."
msgstr "Komunikace s telefony Android."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
@ -978,11 +978,11 @@ msgstr ""
"Seznam adresářů oddělený čárkami k odeslání elektronických knih do zařízení. "
"Bude použit první nalezený."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr "Komunikovat s telefony S60."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr "Spojeno s tablety s WebOS"
@ -18939,7 +18939,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -18947,7 +18947,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -18955,7 +18955,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -18963,7 +18963,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -18972,7 +18972,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"POT-Creation-Date: 2011-11-25 08:01+0000\n"
"PO-Revision-Date: 2011-10-30 06:22+0000\n"
"Last-Translator: Ida Nielsen <Unknown>\n"
"Language-Team: Danish <da@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-11-24 04:43+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-26 04:48+0000\n"
"X-Generator: Launchpad (build 14381)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
msgid "Does absolutely nothing"
@ -26,8 +26,8 @@ msgstr "Gør absolut ingenting"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -975,7 +975,7 @@ msgstr "Fejlsøgnings log"
msgid "Communicate with Android phones."
msgstr "Kommunikér med Android telefoner"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
@ -983,11 +983,11 @@ msgstr ""
"Komma separeret liste af mapper til at sende e-bøger til, på enheden. Den "
"første som findes, vil blive brugt."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr "Kommunikér med S60 telefoner."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr "Kommunikerer med WebOS tablets"
@ -18860,7 +18860,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -18868,7 +18868,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -18876,7 +18876,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -18884,7 +18884,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -18893,7 +18893,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

View File

@ -7,16 +7,16 @@ msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-11-23 07:48+0000\n"
"PO-Revision-Date: 2011-11-16 15:03+0000\n"
"Last-Translator: noses <Unknown>\n"
"POT-Creation-Date: 2011-11-25 08:01+0000\n"
"PO-Revision-Date: 2011-11-29 20:34+0000\n"
"Last-Translator: Ralph Kugler <ralph.kugler@r-kugler.de>\n"
"Language-Team: American English <kde-i18n-doc@lists.kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2011-11-24 04:45+0000\n"
"X-Generator: Launchpad (build 14336)\n"
"X-Launchpad-Export-Date: 2011-11-30 05:23+0000\n"
"X-Generator: Launchpad (build 14404)\n"
"X-Poedit-Bookmarks: 3327,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
"Generated-By: pygettext.py 1.5\n"
@ -28,8 +28,8 @@ msgstr "Macht absolut gar nichts"
#: /home/kovid/work/calibre/src/calibre/db/cache.py:105
#: /home/kovid/work/calibre/src/calibre/db/cache.py:108
#: /home/kovid/work/calibre/src/calibre/db/cache.py:119
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:265
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:266
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:267
#: /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/jetbook/driver.py:74
@ -861,7 +861,7 @@ msgstr "Dieses Profil ist geeignet für den 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 "Dieses Profil ist beabsichtigt für das Amazon Kindle fire"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:722
msgid "This profile is intended for the B&N Nook Color."
@ -991,7 +991,7 @@ msgstr "Fehlerdiagnoseprotokoll"
msgid "Communicate with Android phones."
msgstr "Kommunikation mit Android-Telefonen."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:149
msgid ""
"Comma separated list of directories to send e-books to on the device. The "
"first one that exists will be used"
@ -999,11 +999,11 @@ msgstr ""
"Durch Kommata getrennte Liste von Verzeichnissen an die E-Books auf das "
"Gerät gesendet werden. Das erste vorhandene wird benutzt"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:205
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:206
msgid "Communicate with S60 phones."
msgstr "Kommunikation mit S60-Telefonen."
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:224
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:225
msgid "Communicate with WebOS tablets."
msgstr "Kommuniziere mit WebOS Tablets."
@ -1625,6 +1625,10 @@ msgid ""
"/><b>Chapter Progress:</b> %(chapter_progress)s%%<br /><b>Highlight:</b> "
"%(text)s<br /><b>Notes:</b> %(annotation)s<br /><hr />"
msgstr ""
"<b>Kapitel %(chapter)d:</b> %(chapter_title)s<br /><b>%(typ)s</b><br "
"/><b>Kapitelfortschritt:</b> %(chapter_progress)s%%<br "
"/><b>Hervorhebung:</b> %(text)s<br /><b>Anmerkungen:</b> %(annotation)s<br "
"/><hr />"
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:19
msgid "Communicate with the Palm Pre"
@ -1709,7 +1713,7 @@ msgstr "Kommunikation mit dem Nook E-Book-Reader."
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:84
msgid "Communicate with the Nook Color, TSR and Tablet eBook readers."
msgstr ""
msgstr "Verbinde mit dem Nook Color, TSR und Tablett eBook Lesern."
#: /home/kovid/work/calibre/src/calibre/devices/nuut2/driver.py:17
msgid "Communicate with the Nuut2 eBook reader."
@ -7789,7 +7793,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:181
msgid "Removes the padding CSS properties"
msgstr ""
msgstr "Entfern die CSS Eigenschaft padding"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:182
msgid "&Padding"
@ -7809,7 +7813,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:192
msgid "&Colors"
msgstr ""
msgstr "&Farben"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:198
msgid "&Other CSS Properties:"
@ -9794,11 +9798,11 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:34
msgid "&Search"
msgstr ""
msgstr "&Suchen"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:38
msgid "Find previous match"
msgstr ""
msgstr "vorherige Übereinstimmung finden"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:54
msgid "&Stop selected jobs"
@ -9814,7 +9818,7 @@ msgstr "Zeige Auftrag&details"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:66
msgid "Show &all jobs"
msgstr ""
msgstr "Zeige &allee Aufgaben"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:70
msgid "Stop &all non device jobs"
@ -9822,7 +9826,7 @@ msgstr "&Alle geräteunabhängigen Aufträge beenden"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:74
msgid "&Hide all jobs"
msgstr ""
msgstr "&Verstecke alle Aufgaben"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/message_box.py:49
msgid "&Copy to clipboard"
@ -20186,7 +20190,7 @@ msgid ""
"list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:936
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:935
msgid ""
"list_difference(list1, list2, separator) -- return a list made by removing "
"from list1 any item found in list2, using a case-insensitive compare. The "
@ -20194,7 +20198,7 @@ msgid ""
"returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:957
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:956
msgid ""
"list_intersection(list1, list2, separator) -- return a list made by removing "
"from list1 any item not found in list2, using a case-insensitive compare. "
@ -20202,7 +20206,7 @@ msgid ""
"the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:978
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:977
msgid ""
"list_sort(list, direction, separator) -- return list sorted using a case-"
"insensitive sort. If direction is zero, the list is sorted ascending, "
@ -20210,7 +20214,7 @@ msgid ""
"items in the returned list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:993
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:992
msgid ""
"list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- return yes_val if "
"list1 and list2 contain the same items, otherwise return no_val. The items "
@ -20219,7 +20223,7 @@ msgid ""
"The compare is case insensitive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1011
#: /home/kovid/work/calibre/src/calibre/utils/formatter_functions.py:1010
msgid ""
"list_re(src_list, separator, search_re, opt_replace) -- Construct a list by "
"first separating src_list into items using the separator character. For each "

Some files were not shown because too many files have changed in this diff Show More