Sync to trunk.

This commit is contained in:
John Schember 2011-12-03 11:58:47 -05:00
commit d0681023ac
186 changed files with 21847 additions and 1827 deletions

View File

@ -4,7 +4,7 @@
# for important features/bug fixes. # for important features/bug fixes.
# Also, each release can have new and improved recipes. # Also, each release can have new and improved recipes.
#- version: ?.?.? # - version: ?.?.?
# date: 2011-??-?? # date: 2011-??-??
# #
# new features: # new features:
@ -19,6 +19,77 @@
# new recipes: # new recipes:
# - title: # - 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 - version: 0.8.28
date: 2011-11-25 date: 2011-11-25

View File

@ -0,0 +1,35 @@
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
import re
import string
from calibre.web.feeds.news import BasicNewsRecipe
class GazetaPlSzczecin(BasicNewsRecipe):
title = u'Gazeta.pl Szczecin'
description = u'Wiadomości ze Szczecina na portalu Gazeta.pl.'
__author__ = u'Michał Szkutnik'
__license__ = u'GPL v3'
language = 'pl'
publisher = 'Agora S.A.'
category = 'news, szczecin'
oldest_article = 2
max_articles_per_feed = 100
auto_cleanup = True
remove_tags = [ { "name" : "a", "attrs" : { "href" : "http://szczecin.gazeta.pl/szczecin/www.gazeta.pl" }}]
cover_url = "http://bi.gazeta.pl/i/hp/hp2009/logo.gif"
feeds = [(u'Wszystkie', u'http://rss.feedsportal.com/c/32739/f/530434/index.rss')]
def get_article_url(self, article):
s = re.search("""/0L(szczecin.*)/story01.htm""", article.link)
s = s.group(1)
replacements = { "0B" : ".", "0C" : "/", "0H" : ",", "0I" : "_"}
for (a, b) in replacements.iteritems():
s = string.replace(s, a, b)
s = string.replace(s, "0A", "0")
return "http://"+s
def print_version(self, url):
s = re.search("""/(\d*),(\d*),(\d*),.*\.html""", url)
no1 = s.group(2)
no2 = s.group(3)
return """http://szczecin.gazeta.pl/szczecin/2029020,%s,%s.html""" % (no1, no2)

43
recipes/gs24_pl.recipe Normal file
View File

@ -0,0 +1,43 @@
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
import re
import string
from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1322322819(BasicNewsRecipe):
title = u'GS24.pl (Głos Szczeciński)'
description = u'Internetowy serwis Głosu Szczecińskiego'
__author__ = u'Michał Szkutnik'
__license__ = u'GPL v3'
language = 'pl'
publisher = 'Media Regionalne sp. z o.o.'
category = 'news, szczecin'
oldest_article = 2
max_articles_per_feed = 100
auto_cleanup = True
cover_url = "http://www.gs24.pl/images/top_logo.png"
feeds = [
# (u'Wszystko', u'http://www.gs24.pl/rss.xml'),
(u'Szczecin', u'http://www.gs24.pl/szczecin.xml'),
(u'Stargard', u'http://www.gs24.pl/stargard.xml'),
(u'Świnoujście', u'http://www.gs24.pl/swinoujscie.xml'),
(u'Goleniów', u'http://www.gs24.pl/goleniow.xml'),
(u'Gryfice', u'http://www.gs24.pl/gryfice.xml'),
(u'Kamień Pomorski', u'http://www.gs24.pl/kamienpomorski.xml'),
(u'Police', u'http://www.gs24.pl/police.xml'),
(u'Region', u'http://www.gs24.pl/region.xml'),
(u'Sport', u'http://www.gs24.pl/sport.xml'),
]
def get_article_url(self, article):
s = re.search("""/0L0S(gs24.*)/story01.htm""", article.link)
s = s.group(1)
replacements = { "0B" : ".", "0C" : "/", "0H" : ",", "0I" : "_", "0D" : "?", "0F" : "="}
for (a, b) in replacements.iteritems():
s = string.replace(s, a, b)
s = string.replace(s, "0A", "0")
return "http://"+s
def print_version(self, url):
return url + "&Template=printpicart"

View File

@ -2,7 +2,26 @@
from calibre.web.feeds.news import BasicNewsRecipe from calibre.web.feeds.news import BasicNewsRecipe
import re import re
from calibre.utils.magick import Image 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. ''' Version 1.2, updated cover image to match the changed website.
added info date on title added info date on title
@ -17,39 +36,37 @@ from calibre.utils.magick import Image
changed è into è changed è into è
updated remove tags updated remove tags
removed keep_only tags removed keep_only tags
Version 1.8 26-11-2022
added remove tag: article-slideshow
''' '''
class AdvancedUserRecipe1306097511(BasicNewsRecipe): class AdvancedUserRecipe1306097511(BasicNewsRecipe):
title = u'Metro Nieuws NL' title = u'Metro Nieuws NL'
oldest_article = 1.5 oldest_article = 10
max_articles_per_feed = 100 max_articles_per_feed = 15
__author__ = u'DrMerry' __author__ = u'DrMerry'
description = u'Metro Nederland' description = u'Metro Nederland'
language = u'nl' language = u'nl'
simultaneous_downloads = 5 simultaneous_downloads = 5
masthead_url = 'http://blog.metronieuws.nl/wp-content/themes/metro/images/header.gif'
timeout = 2 timeout = 2
#delay = 1
center_navbar = True 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]' timefmt = ' [%A, %d %b %Y]'
no_stylesheets = True no_stylesheets = True
remove_javascript = True remove_javascript = True
remove_empty_feeds = True remove_empty_feeds = True
cover_url = 'http://www.oldreadmetro.com/img/en/metroholland/last/1/small.jpg' cover_url = 'http://www.oldreadmetro.com/img/en/metroholland/last/1/small.jpg'
publication_type = 'newspaper' publication_type = 'newspaper'
remove_tags_before = dict(id='date')
remove_tags_after = dict(name='div', attrs={'class':'article-body'})
encoding = 'utf-8' encoding = 'utf-8'
remove_attributes = ['style', 'font', 'width', 'height'] remove_attributes = ['style', 'font', 'width', 'height']
use_embedded_content = False use_embedded_content = False
conversion_options = { conversion_options = {
'authors' : 'Metro Nederland', 'authors' : 'Metro Nederland & calibre & DrMerry',
'author_sort' : 'Metro Nederland', 'author_sort' : 'Metro Nederland & calibre & DrMerry',
'publisher' : 'DrMerry/Metro Nederland' 'publisher' : 'DrMerry/Metro Nederland'
} }
extra_css = 'body {padding:5px 0px; background:#fff;font-size: 13px;}\ 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;}\ .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;}\ 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;}\ .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;}\ 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 {width: 246px;margin-bottom: 5px;margin-left: 10px;}\
div.article-image-caption-2column {margin-bottom: 10px;width: 373px;} div.article-image-caption-3column {}\ 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' preprocess_regexps = [
'commentForm', 'metroCommentInnerWrap', 'article-slideshow-counter-container', 'article-slideshow-control', 'ad', 'header-links', (re.compile(r'<img[^>]+top-line[^>]+>', re.DOTALL|re.IGNORECASE),
'art-rgt','pluck-app pluck-comm', 'share-and-byline', 'article-tools-below-title', 'col-179 ', 'related-links', 'clear padding-top-15', 'share-tools', lambda match: '<hr class="merryhr" />'),
'article1','article-page-auto-pushes', 'footer-edit','clear']}), (re.compile(r'(<img[^>]+metronieuws\.nl/[^>]+/templates/[^>]+jpe?g[^>]+>|metronieuws\.nl/internal\-roxen\-unit\.gif)', re.DOTALL|re.IGNORECASE),
dict(name='div', attrs={'id':['article-2', 'article-4', 'article-1', 'navigation', 'footer', 'header', 'comments', 'sidebar', 'share-and-byline']}), lambda match: ''),
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>'),
] ]
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): def postprocess_html(self, soup, first):
for tag in soup.findAll(lambda tag: tag.name.lower()=='img' and tag.has_key('src')): myProcess = MerryProcess()
iurl = tag['src'] myProcess.optimizeLayout(soup)
img = Image() if SHOWDEBUG0 == True:
img.open(iurl) if KEEPSTATS == True:
img.trim(0) statinfo = 'generated stats:'
img.save(iurl) 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 return soup
feeds = [ feeds = [
@ -95,6 +127,291 @@ class AdvancedUserRecipe1306097511(BasicNewsRecipe):
(u'Familie', u'http://www.metronieuws.nl/rss.xml?c=1283166782-9'), (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'Blogs', u'http://www.metronieuws.nl/rss.xml?c=1295586825-6'),
(u'Reizen', u'http://www.metronieuws.nl/rss.xml?c=1277377288-13'), (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') (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: 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/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/19: fix a bug in txt source parsing
2011/10/17: disable fetching of premium content, also improved 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">' new_raw_html = '<html><head><title>Untitled</title></head><body><div class="images">'
next_is_img_txt = False next_is_img_txt = False
title_started = False title_started = False
title_break_reached = False
met_article_start_char = False met_article_start_char = False
for item in splitter.split(raw_html): for item in splitter.split(raw_html):
item = item.strip() item = item.strip()
if item.startswith(u'\u3010'): # 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 met_article_start_char = True
new_raw_html = new_raw_html + '</div><div class="content"><p>' + item + '<p>\n' 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: else:
if next_is_img_txt == False: if next_is_img_txt == False:
if item.startswith("=@"): 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): with nested(open(opf_path, 'wb'), open(ncx_path, 'wb')) as (opf_file, ncx_file):
opf.render(opf_file, ncx_file) opf.render(opf_file, ncx_file)

View File

@ -12,7 +12,7 @@ class Sueddeutsche(BasicNewsRecipe):
title = u'sueddeutsche.de' title = u'sueddeutsche.de'
description = 'News from Germany' description = 'News from Germany'
__author__ = 'Oliver Niesner and Armin Geller' __author__ = 'Oliver Niesner and Armin Geller' #AGe 2011-11-25
use_embedded_content = False use_embedded_content = False
timefmt = ' [%d %b %Y]' timefmt = ' [%d %b %Y]'
oldest_article = 7 oldest_article = 7
@ -22,7 +22,7 @@ class Sueddeutsche(BasicNewsRecipe):
encoding = 'utf-8' encoding = 'utf-8'
remove_javascript = True remove_javascript = True
cover_url = 'http://polpix.sueddeutsche.com/polopoly_fs/1.1219199.1322239289!/image/image.jpg_gen/derivatives/860x860/image.jpg' # 2011-11-25 AGe
remove_tags = [ dict(name='link'), dict(name='iframe'), remove_tags = [ dict(name='link'), dict(name='iframe'),
dict(name='div', attrs={'id':["bookmarking","themenbox","artikelfoot","CAD_AD", dict(name='div', attrs={'id':["bookmarking","themenbox","artikelfoot","CAD_AD",
@ -47,7 +47,7 @@ class Sueddeutsche(BasicNewsRecipe):
extra_css = ''' extra_css = '''
h2{font-family:Arial,Helvetica,sans-serif; font-size: x-small; color: #003399;} h2{font-family:Arial,Helvetica,sans-serif; font-size: x-small; color: #003399;}
a{font-family:Arial,Helvetica,sans-serif; font-size: x-small; font-style:italic;} a{font-family:Arial,Helvetica,sans-serif; font-style:italic;}
.dachzeile p{font-family:Arial,Helvetica,sans-serif; font-size: x-small; } .dachzeile p{font-family:Arial,Helvetica,sans-serif; font-size: x-small; }
h1{ font-family:Arial,Helvetica,sans-serif; font-size:x-large; font-weight:bold;} h1{ font-family:Arial,Helvetica,sans-serif; font-size:x-large; font-weight:bold;}
.artikelTeaser{font-family:Arial,Helvetica,sans-serif; font-size: x-small; font-weight:bold; } .artikelTeaser{font-family:Arial,Helvetica,sans-serif; font-size: x-small; font-weight:bold; }

58
recipes/tvxs.recipe Normal file
View File

@ -0,0 +1,58 @@
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from calibre.web.feeds.recipes import BasicNewsRecipe
class TVXS(BasicNewsRecipe):
title = 'TVXS'
__author__ = 'hargikas'
description = 'News from Greece'
max_articles_per_feed = 100
oldest_article = 100
publisher = 'TVXS'
category = 'news, GR'
language = 'el'
encoding = None
#conversion_options = { 'linearize_tables': True}
no_stylesheets = True
remove_tags_before = dict(name='h1',attrs={'class':'print-title'})
remove_tags_after = dict(name='div',attrs={'class':'field field-type-relevant-content field-field-relevant-articles'})
remove_attributes = ['width', 'src', 'header', 'footer']
feeds = [(u'Ελλάδα', 'http://tvxs.gr/feeds/2/feed.xml'),
(u'Κόσμος', 'http://tvxs.gr/feeds/5/feed.xml'),
(u'Τοπικά Νέα', 'http://tvxs.gr/feeds/5363/feed.xml'),
(u'Sci Tech', 'http://tvxs.gr/feeds/26/feed.xml'),
(u'Αθλητικά', 'http://tvxs.gr/feeds/243/feed.xml'),
(u'Internet & ΜΜΕ', 'http://tvxs.gr/feeds/32/feed.xml'),
(u'Καλά Νέα', 'http://tvxs.gr/feeds/914/feed.xml'),
(u'Απόψεις', 'http://tvxs.gr/feeds/1109/feed.xml'),
(u'Πολιτισμός', 'http://tvxs.gr/feeds/1317/feed.xml'),
(u'Greenlife', 'http://tvxs.gr/feeds/3/feed.xml'),
(u'Ιστορία', 'http://tvxs.gr/feeds/1573/feed.xml'),
(u'Χιούμορ', 'http://tvxs.gr/feeds/692/feed.xml')]
def print_version(self, url):
import urllib2, urlparse, StringIO, gzip
fp = urllib2.urlopen(url)
data = fp.read()
if fp.info()['content-encoding'] == 'gzip':
gzip_data = StringIO.StringIO(data)
gzipper = gzip.GzipFile(fileobj=gzip_data)
data = gzipper.read()
fp.close()
pos_1 = data.find('<a href="/print/')
if pos_1 == -1:
return url
pos_2 = data.find('">', pos_1)
if pos_2 == -1:
return url
pos_1 += len('<a href="')
new_url = data[pos_1:pos_2]
print_url = urlparse.urljoin(url, new_url)
return print_url

98
recipes/vanityfair.recipe Normal file
View File

@ -0,0 +1,98 @@
from datetime import date
import re
from calibre.web.feeds.news import BasicNewsRecipe
class VanityFair(BasicNewsRecipe):
title = u"Vanity Fair"
description = 'Vanity Fair Magazine (U.S.)'
language = 'en'
__author__ = 'Barty'
max_articles_per_feed = 100
no_stylesheets = False
auto_cleanup = False
timefmt = ' [%B %Y]'
oldest_article = 365
masthead_url = 'http://www.vanityfair.com/etc/designs/vanityfair/images/shell/print-logo.png'
INDEX = 'http://www.vanityfair.com'
CATEGORIES = [
# comment out categories you don't want
# (user friendly name, url suffix, max number of articles to load)
('Hollywood','hollywood',10),
('Culture','culture',10),
('Business','business',10),
('Politics','politics',10),
('Society','society',10),
('Style','style',10),
('VF Daily','online/daily',10),
("James Wolcott's Blog",'online/wolcott',10),
("The Oscars",'online/oscars',10),
]
# set this to False if you don't want to put the first article
# that appears in each section to a "Featured" section
FEATURED_CAT = True
remove_tags = [
{'name':['nav']},
{'class':re.compile(r'_(header|rubric|share|subnav|leaderboard)|comments-count|ecom_placement')}
]
remove_tags_after = [{'class':'cn_blogpost'},{'id':'wrapper'}]
def parse_index(self):
self.cover_url = 'http://www.vanityfair.com/magazine/toc/contents-%s/_jcr_content/par/cn_contentwell/par-main/cn_pagination_contai/cn_image.size.cover_vanityfair_300.jpg' % (date.today().strftime('%Y%m'))
feeds = []
seen_urls = set([])
features = []
for category in self.CATEGORIES:
(cat_name, tag, max_articles) = category
self.log('Reading category:', cat_name)
articles = []
page = "%s/%s" % (self.INDEX, tag)
soup = self.index_to_soup(page)
headers = soup.findAll(attrs={'class':'headline '})
add_featured = self.FEATURED_CAT
for header in headers:
self.log(self.tag_to_string(header))
atags = header.findAll('a')
# if there's more than one a tag, it's some kind of list, skip
if not atags or len(atags)>1:
continue
atag = atags[0]
url = atag['href']
if url.startswith('/'):
url = self.INDEX + url
if url in seen_urls:
continue
seen_urls.add(url)
title = self.tag_to_string(atag)
self.log('\tFound article:', title)
self.log('\t', url)
par = header.findParent('article') if tag.startswith('online/') else header.findParent('section')
if par is not None:
desc = par.find(attrs={'class':'body '})
desc = self.tag_to_string(desc) if desc else ''
#self.log('\t', desc)
if add_featured:
features.append({'title':title,'url':url,'description':desc})
add_featured = False
else:
articles.append({'title':title,'url':url,'description':desc})
if len(articles) >= max_articles:
break
if articles:
feeds.append((cat_name, articles))
if features:
feeds.insert(0,('Featured', features))
return feeds
def print_version(self, url):
return url.replace('.html', '.print')

View File

@ -283,8 +283,7 @@ class Install(Develop):
class Sdist(Command): class Sdist(Command):
description = 'Create a source distribution' 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): def run(self, opts):
if not self.e(self.d(self.DEST)): if not self.e(self.d(self.DEST)):
@ -313,7 +312,7 @@ class Sdist(Command):
shutil.copy2(f, dest) shutil.copy2(f, dest)
self.info('\tCreating tarfile...') 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)) 'calibre'], cwd=self.d(tdir))
def clean(self): def clean(self):

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n" "Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-" "Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n" "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" "PO-Revision-Date: 2011-11-22 16:45+0000\n"
"Last-Translator: Ferran Rius <frius64@hotmail.com>\n" "Last-Translator: Ferran Rius <frius64@hotmail.com>\n"
"Language-Team: Catalan <linux@softcatala.org>\n" "Language-Team: Catalan <linux@softcatala.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-23 05:19+0000\n" "X-Launchpad-Export-Date: 2011-11-26 05:10+0000\n"
"X-Generator: Launchpad (build 14336)\n" "X-Generator: Launchpad (build 14381)\n"
"Language: ca\n" "Language: ca\n"
#. name for aaa #. name for aaa
@ -17955,7 +17955,7 @@ msgid "Ndoola"
msgstr "" msgstr ""
#. name for nds #. name for nds
msgid "Saxon; Low" msgid "German; Low"
msgstr "" msgstr ""
#. name for ndt #. name for ndt

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n" "Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-" "Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
"devel@lists.alioth.debian.org>\n" "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" "PO-Revision-Date: 2011-11-11 00:16+0000\n"
"Last-Translator: kulkke <Unknown>\n" "Last-Translator: kulkke <Unknown>\n"
"Language-Team: Turkish <gnome-turk@gnome.org>\n" "Language-Team: Turkish <gnome-turk@gnome.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-11-12 04:48+0000\n" "X-Launchpad-Export-Date: 2011-11-26 05:42+0000\n"
"X-Generator: Launchpad (build 14277)\n" "X-Generator: Launchpad (build 14381)\n"
"Language: tr\n" "Language: tr\n"
#. name for aaa #. name for aaa
@ -17958,7 +17958,7 @@ msgid "Ndoola"
msgstr "" msgstr ""
#. name for nds #. name for nds
msgid "Saxon; Low" msgid "German; Low"
msgstr "" msgstr ""
#. name for ndt #. name for ndt

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -255,7 +255,7 @@ class LRXMetadataReader(MetadataReaderPlugin):
class MOBIMetadataReader(MetadataReaderPlugin): class MOBIMetadataReader(MetadataReaderPlugin):
name = 'Read MOBI metadata' name = 'Read MOBI metadata'
file_types = set(['mobi', 'prc', 'azw', 'azw4']) file_types = set(['mobi', 'prc', 'azw', 'azw4', 'pobi'])
description = _('Read metadata from %s files')%'MOBI' description = _('Read metadata from %s files')%'MOBI'
def get_metadata(self, stream, ftype): def get_metadata(self, stream, ftype):
@ -545,7 +545,7 @@ from calibre.customize.profiles import input_profiles, output_profiles
from calibre.devices.apple.driver import ITUNES from calibre.devices.apple.driver import ITUNES
from calibre.devices.hanlin.driver import HANLINV3, HANLINV5, BOOX, SPECTRA from calibre.devices.hanlin.driver import HANLINV3, HANLINV5, BOOX, SPECTRA
from calibre.devices.blackberry.driver import BLACKBERRY from calibre.devices.blackberry.driver import BLACKBERRY, PLAYBOOK
from calibre.devices.cybook.driver import CYBOOK, ORIZON from calibre.devices.cybook.driver import CYBOOK, ORIZON
from calibre.devices.eb600.driver import (EB600, COOL_ER, SHINEBOOK, from calibre.devices.eb600.driver import (EB600, COOL_ER, SHINEBOOK,
POCKETBOOK360, GER2, ITALICA, ECLICTO, DBOOK, INVESBOOK, POCKETBOOK360, GER2, ITALICA, ECLICTO, DBOOK, INVESBOOK,
@ -646,7 +646,7 @@ plugins += [
plugins += [ plugins += [
HANLINV3, HANLINV3,
HANLINV5, HANLINV5,
BLACKBERRY, BLACKBERRY, PLAYBOOK,
CYBOOK, CYBOOK,
ORIZON, ORIZON,
ILIAD, ILIAD,

View File

@ -39,15 +39,15 @@ def get_connected_device():
if ok: if ok:
dev = d dev = d
dev.reset(log_packets=False, detected_device=det) dev.reset(log_packets=False, detected_device=det)
connected_devices.append(dev) connected_devices.append((det, dev))
if dev is None: if dev is None:
print >>sys.stderr, 'Unable to find a connected ebook reader.' print >>sys.stderr, 'Unable to find a connected ebook reader.'
return return
for d in connected_devices: for det, d in connected_devices:
try: try:
d.open(None) d.open(det, None)
except: except:
continue continue
else: else:
@ -121,7 +121,7 @@ def debug(ioreg_to_tmp=False, buf=None):
out('Trying to open', dev.name, '...', end=' ') out('Trying to open', dev.name, '...', end=' ')
try: try:
dev.reset(detected_device=det) dev.reset(detected_device=det)
dev.open(None) dev.open(det, None)
out('OK') out('OK')
except: except:
import traceback import traceback

View File

@ -167,7 +167,7 @@ class ANDROID(USBMS):
'MB525', 'ANDROID2.3', 'SGH-I997', 'GT-I5800_CARD', 'MB612', 'MB525', 'ANDROID2.3', 'SGH-I997', 'GT-I5800_CARD', 'MB612',
'GT-S5830_CARD', 'GT-S5570_CARD', 'MB870', 'MID7015A', 'GT-S5830_CARD', 'GT-S5570_CARD', 'MB870', 'MID7015A',
'ALPANDIGITAL', 'ANDROID_MID', 'VTAB1008', 'EMX51_BBG_ANDROI', 'ALPANDIGITAL', 'ANDROID_MID', 'VTAB1008', 'EMX51_BBG_ANDROI',
'UMS', '.K080', 'P990', 'LTE', 'MB853'] 'UMS', '.K080', 'P990', 'LTE', 'MB853', 'GT-S5660_CARD']
WINDOWS_CARD_A_MEM = ['ANDROID_PHONE', 'GT-I9000_CARD', 'SGH-I897', WINDOWS_CARD_A_MEM = ['ANDROID_PHONE', 'GT-I9000_CARD', 'SGH-I897',
'FILE-STOR_GADGET', 'SGH-T959', 'SAMSUNG_ANDROID', 'GT-P1000_CARD', 'FILE-STOR_GADGET', 'SGH-T959', 'SAMSUNG_ANDROID', 'GT-P1000_CARD',
'A70S', 'A101IT', '7', 'INCREDIBLE', 'A7EB', 'SGH-T849_CARD', 'A70S', 'A101IT', '7', 'INCREDIBLE', 'A7EB', 'SGH-T849_CARD',
@ -199,6 +199,18 @@ class ANDROID(USBMS):
dirs = list(map(aldiko_tweak, dirs)) dirs = list(map(aldiko_tweak, dirs))
return dirs return dirs
def windows_sort_drives(self, drives):
try:
vid, pid, bcd = self.device_being_opened[:3]
except:
vid, pid, bcd = -1, -1, -1
if (vid, pid, bcd) == (0x0e79, 0x1408, 0x0222):
letter_a = drives.get('carda', None)
if letter_a is not None:
drives['carda'] = drives['main']
drives['main'] = letter_a
return drives
class S60(USBMS): class S60(USBMS):
name = 'S60 driver' name = 'S60 driver'

View File

@ -808,7 +808,7 @@ class ITUNES(DriverBase):
self.log.info("ITUNES.get_file(): exporting '%s'" % path) self.log.info("ITUNES.get_file(): exporting '%s'" % path)
outfile.write(open(self.cached_books[path]['lib_book'].location().path).read()) outfile.write(open(self.cached_books[path]['lib_book'].location().path).read())
def open(self, library_uuid): def open(self, connected_device, library_uuid):
''' '''
Perform any device specific initialization. Called after the device is Perform any device specific initialization. Called after the device is
detected but before any other functions that communicate with the device. detected but before any other functions that communicate with the device.
@ -824,7 +824,7 @@ class ITUNES(DriverBase):
''' '''
if DEBUG: if DEBUG:
self.log.info("ITUNES.open()") self.log.info("ITUNES.open(connected_device: %s)" % repr(connected_device))
# Display a dialog recommending using 'Connect to iTunes' if user hasn't # Display a dialog recommending using 'Connect to iTunes' if user hasn't
# previously disabled the dialog # previously disabled the dialog
@ -3224,7 +3224,7 @@ class ITUNES_ASYNC(ITUNES):
only_presence=False): only_presence=False):
return self.connected, self return self.connected, self
def open(self, library_uuid): def open(self, connected_device, library_uuid):
''' '''
Perform any device specific initialization. Called after the device is Perform any device specific initialization. Called after the device is
detected but before any other functions that communicate with the device. detected but before any other functions that communicate with the device.
@ -3239,7 +3239,7 @@ class ITUNES_ASYNC(ITUNES):
we need to talk to iTunes to discover if there's a connected iPod we need to talk to iTunes to discover if there's a connected iPod
''' '''
if DEBUG: if DEBUG:
self.log.info("ITUNES_ASYNC.open()") self.log.info("ITUNES_ASYNC.open(connected_device: %s)" % repr(connected_device))
# Confirm/create thumbs archive # Confirm/create thumbs archive
if not os.path.exists(self.cache_dir): if not os.path.exists(self.cache_dir):

View File

@ -59,9 +59,9 @@ class BAMBOOK(DeviceConfig, DevicePlugin):
def reset(self, key='-1', log_packets=False, report_progress=None, def reset(self, key='-1', log_packets=False, report_progress=None,
detected_device=None) : detected_device=None) :
self.open(None) self.open(None, None)
def open(self, library_uuid): def open(self, connected_device, library_uuid):
# Make sure the Bambook library is ready # Make sure the Bambook library is ready
if not is_bambook_lib_ready(): if not is_bambook_lib_ready():
raise OpenFeedback(_("Unable to connect to Bambook, you need to install Bambook library first.")) raise OpenFeedback(_("Unable to connect to Bambook, you need to install Bambook library first."))

View File

@ -28,3 +28,26 @@ class BLACKBERRY(USBMS):
EBOOK_DIR_MAIN = 'eBooks' EBOOK_DIR_MAIN = 'eBooks'
SUPPORTS_SUB_DIRS = True SUPPORTS_SUB_DIRS = True
class PLAYBOOK(USBMS):
name = 'Blackberry Playbook Interface'
gui_name = 'Playbook'
description = _('Communicate with the Blackberry playbook.')
author = _('Kovid Goyal')
supported_platforms = ['windows', 'linux', 'osx']
# Ordered list of supported formats
FORMATS = ['epub']
VENDOR_ID = [0x0fca]
PRODUCT_ID = [0x8010]
BCD = [0x1]
VENDOR_NAME = 'GENERIC-'
WINDOWS_MAIN_MEM = 'MULTI-CARD'
MAIN_MEMORY_VOLUME_LABEL = 'Blackberry'
EBOOK_DIR_MAIN = 'media/books'
SUPPORTS_SUB_DIRS = True

View File

@ -79,7 +79,7 @@ class FOLDER_DEVICE(USBMS):
only_presence=False): only_presence=False):
return self.is_connected, self return self.is_connected, self
def open(self, library_uuid): def open(self, connected_device, library_uuid):
self.current_library_uuid = library_uuid self.current_library_uuid = library_uuid
if not self._main_prefix: if not self._main_prefix:
return False return False

View File

@ -133,8 +133,14 @@ class DevicePlugin(Plugin):
if debug: if debug:
self.print_usb_device_info(device_id) self.print_usb_device_info(device_id)
if only_presence or self.can_handle_windows(device_id, debug=debug): if only_presence or self.can_handle_windows(device_id, debug=debug):
return True try:
return False bcd = int(device_id.rpartition(
'rev_')[-1].replace(':', 'a'), 16)
except:
bcd = None
return True, (vendor_id, product_id, bcd, None,
None, None)
return False, None
def test_bcd(self, bcdDevice, bcd): def test_bcd(self, bcdDevice, bcd):
if bcd is None or len(bcd) == 0: if bcd is None or len(bcd) == 0:
@ -154,7 +160,7 @@ class DevicePlugin(Plugin):
''' '''
if iswindows: if iswindows:
return self.is_usb_connected_windows(devices_on_system, return self.is_usb_connected_windows(devices_on_system,
debug=debug, only_presence=only_presence), None debug=debug, only_presence=only_presence)
vendors_on_system = set([x[0] for x in devices_on_system]) vendors_on_system = set([x[0] for x in devices_on_system])
vendors = self.VENDOR_ID if hasattr(self.VENDOR_ID, '__len__') else [self.VENDOR_ID] vendors = self.VENDOR_ID if hasattr(self.VENDOR_ID, '__len__') else [self.VENDOR_ID]
@ -224,7 +230,7 @@ class DevicePlugin(Plugin):
return True return True
def open(self, library_uuid): def open(self, connected_device, library_uuid):
''' '''
Perform any device specific initialization. Called after the device is Perform any device specific initialization. Called after the device is
detected but before any other functions that communicate with the device. detected but before any other functions that communicate with the device.
@ -238,6 +244,17 @@ class DevicePlugin(Plugin):
This method can raise an OpenFeedback exception to display a message to This method can raise an OpenFeedback exception to display a message to
the user. 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 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).
''' '''
raise NotImplementedError() raise NotImplementedError()

View File

@ -287,7 +287,7 @@ class KINDLE2(KINDLE):
name = 'Kindle 2/3 Device Interface' name = 'Kindle 2/3 Device Interface'
description = _('Communicate with the Kindle 2/3 eBook reader.') description = _('Communicate with the Kindle 2/3 eBook reader.')
FORMATS = KINDLE.FORMATS + ['pdf', 'azw4'] FORMATS = KINDLE.FORMATS + ['pdf', 'azw4', 'pobi']
DELETE_EXTS = KINDLE.DELETE_EXTS DELETE_EXTS = KINDLE.DELETE_EXTS
PRODUCT_ID = [0x0002, 0x0004] PRODUCT_ID = [0x0002, 0x0004]

View File

@ -205,15 +205,15 @@ def main():
if ok: if ok:
dev = d dev = d
dev.reset(log_packets=options.log_packets, detected_device=det) dev.reset(log_packets=options.log_packets, detected_device=det)
connected_devices.append(dev) connected_devices.append((det, dev))
if dev is None: if dev is None:
print >>sys.stderr, 'Unable to find a connected ebook reader.' print >>sys.stderr, 'Unable to find a connected ebook reader.'
return 1 return 1
for d in connected_devices: for det, d in connected_devices:
try: try:
d.open(None) d.open(det, None)
except: except:
continue continue
else: else:

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