mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Sync to trunk.
This commit is contained in:
commit
d0681023ac
@ -4,7 +4,7 @@
|
||||
# for important features/bug fixes.
|
||||
# Also, each release can have new and improved recipes.
|
||||
|
||||
#- version: ?.?.?
|
||||
# - version: ?.?.?
|
||||
# date: 2011-??-??
|
||||
#
|
||||
# new features:
|
||||
@ -19,6 +19,77 @@
|
||||
# new recipes:
|
||||
# - title:
|
||||
|
||||
- version: 0.8.29
|
||||
date: 2011-12-02
|
||||
|
||||
new features:
|
||||
- title: "When searching for author names with accented characters, allow the non accented version to match. For example, searching for Nino will now match Niño."
|
||||
tickets: [879729]
|
||||
|
||||
- title: "Driver for Blackberry Playbook, Motorola Electrify and Samsung Galaxy GIO S5660"
|
||||
tickets: [805745,898123,897330]
|
||||
|
||||
- title: "Metadata search and replace, make the regular expressions unicode aware"
|
||||
|
||||
bug fixes:
|
||||
- title: "Fix regression in 0.8.28 that broke sending PDF files to iTunes"
|
||||
tickets: [896791]
|
||||
|
||||
- title: "Metadata download, do not strip # from titles."
|
||||
tickets: [898310]
|
||||
|
||||
- title: "Conversion pipeline: Do not error out on books that set font size to zero."
|
||||
tickets: [898194]
|
||||
|
||||
- title: "News download: Respect the delay setting when downloading RSS feeds as well."
|
||||
tickets: [897907]
|
||||
|
||||
- title: "EPUB Output: Ensure that xml:lang is set if lang is set as ADE looks for xml:lang, not lang"
|
||||
tickets: [897531]
|
||||
|
||||
- title: "Content server: Reduce memory consumption when sending very large files"
|
||||
tickets: [897343]
|
||||
|
||||
- title: "Preserve capitalization of Scottish author names when downloading metadata"
|
||||
|
||||
- title: "Fix update title sort in bulk metadata edit not using language information"
|
||||
|
||||
- title: "Fix sorting by published column in the download metadata dialog broken"
|
||||
tickets: [896832]
|
||||
|
||||
- title: "Allow use of languages field when generating CSV/XML catalogs"
|
||||
tickets: [896620]
|
||||
|
||||
- title: "Get Books: Fix ebookpoint.pl"
|
||||
|
||||
- title: "When calculating title sort for a book based on its language, only use the specified language not a combination of the language and english"
|
||||
tickets: [896412]
|
||||
|
||||
improved recipes:
|
||||
- Metro NL
|
||||
- Ming Pao
|
||||
- Rolling Stones Mag
|
||||
- Buffalo News
|
||||
|
||||
new recipes:
|
||||
- title: gs24.pl and Gazeta.pl Szczecin
|
||||
author: Michal Szkutnik
|
||||
|
||||
- title: Vanity Fair
|
||||
author: Barty
|
||||
|
||||
- title: Skylife
|
||||
author: thomass
|
||||
|
||||
- title: Daily Writing Tips
|
||||
author: NotTaken
|
||||
|
||||
- title: TechDirt
|
||||
author: Krittika Goyal
|
||||
|
||||
- title: Cosmopolitan UK
|
||||
author: Dave Asbury
|
||||
|
||||
- version: 0.8.28
|
||||
date: 2011-11-25
|
||||
|
||||
|
35
recipes/gazeta_pl_szczecin.recipe
Normal file
35
recipes/gazeta_pl_szczecin.recipe
Normal 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
43
recipes/gs24_pl.recipe
Normal 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"
|
@ -2,7 +2,26 @@
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
import re
|
||||
from calibre.utils.magick import Image
|
||||
from BeautifulSoup import BeautifulSoup
|
||||
try:
|
||||
from calibre_plugins.drMerry.debug import debuglogger as mlog
|
||||
print 'drMerry debuglogger found, debug options can be used'
|
||||
from calibre_plugins.drMerry.stats import statslogger as mstat
|
||||
print 'drMerry stats tracker found, stat can be tracked'
|
||||
mlog.setLoglevel(1) #-1 == no log; 0 for normal output
|
||||
mstat.calculateStats(False) #track stats (to track stats loglevel must be > 0
|
||||
KEEPSTATS = mstat.keepmystats()
|
||||
SHOWDEBUG0 = mlog.showdebuglevel(0)
|
||||
SHOWDEBUG1 = mlog.showdebuglevel(1)
|
||||
SHOWDEBUG2 = mlog.showdebuglevel(2)
|
||||
except:
|
||||
print 'drMerry debuglogger not found, skipping debug options'
|
||||
SHOWDEBUG0 = False
|
||||
SHOWDEBUG1 = False
|
||||
SHOWDEBUG2 = False
|
||||
KEEPSTATS = False
|
||||
|
||||
print ('level0: %s\nlevel1: %s\nlevel2: %s' % (SHOWDEBUG0,SHOWDEBUG1,SHOWDEBUG2))
|
||||
|
||||
''' Version 1.2, updated cover image to match the changed website.
|
||||
added info date on title
|
||||
@ -17,39 +36,37 @@ from calibre.utils.magick import Image
|
||||
changed è into è
|
||||
updated remove tags
|
||||
removed keep_only tags
|
||||
Version 1.8 26-11-2022
|
||||
added remove tag: article-slideshow
|
||||
'''
|
||||
|
||||
class AdvancedUserRecipe1306097511(BasicNewsRecipe):
|
||||
title = u'Metro Nieuws NL'
|
||||
oldest_article = 1.5
|
||||
max_articles_per_feed = 100
|
||||
oldest_article = 10
|
||||
max_articles_per_feed = 15
|
||||
__author__ = u'DrMerry'
|
||||
description = u'Metro Nederland'
|
||||
language = u'nl'
|
||||
simultaneous_downloads = 5
|
||||
masthead_url = 'http://blog.metronieuws.nl/wp-content/themes/metro/images/header.gif'
|
||||
timeout = 2
|
||||
#delay = 1
|
||||
center_navbar = True
|
||||
#auto_cleanup = True
|
||||
#auto_cleanup_keep = '//div[@class="article-image-caption-2column"]/*|//div[@id="date"]/*|//div[@class="article-image-caption-3column"]/*'
|
||||
timefmt = ' [%A, %d %b %Y]'
|
||||
no_stylesheets = True
|
||||
remove_javascript = True
|
||||
remove_empty_feeds = True
|
||||
cover_url = 'http://www.oldreadmetro.com/img/en/metroholland/last/1/small.jpg'
|
||||
publication_type = 'newspaper'
|
||||
remove_tags_before = dict(id='date')
|
||||
remove_tags_after = dict(name='div', attrs={'class':'article-body'})
|
||||
encoding = 'utf-8'
|
||||
remove_attributes = ['style', 'font', 'width', 'height']
|
||||
use_embedded_content = False
|
||||
conversion_options = {
|
||||
'authors' : 'Metro Nederland',
|
||||
'author_sort' : 'Metro Nederland',
|
||||
'authors' : 'Metro Nederland & calibre & DrMerry',
|
||||
'author_sort' : 'Metro Nederland & calibre & DrMerry',
|
||||
'publisher' : 'DrMerry/Metro Nederland'
|
||||
}
|
||||
extra_css = 'body {padding:5px 0px; background:#fff;font-size: 13px;}\
|
||||
#date {clear: both;margin-left: 19px;font-size: 11px;font-weight: 300;color: #616262;height: 15px;}\
|
||||
#date, div.share-and-byline div.byline div.text div.title, div.share-and-byline div.byline div.text div.name {clear: both;margin-bottom: 10px;font-size:0.5em; color: #616262;}\
|
||||
.article-box-fact.module-title {clear:both;padding: 8px 0;color: #24763b;font-family: arial, sans-serif;font-size: 14px;font-weight: bold;}\
|
||||
h1.title {color: #000000;font-size: 44px;padding-bottom: 10px;font-weight: 300;} h2.subtitle {font-size: 13px;font-weight: 700;padding-bottom: 10px;}\
|
||||
.article-body p{padding-bottom:10px;}div.column-1-3{margin-left: 19px;padding-right: 9px;}\
|
||||
@ -58,28 +75,43 @@ class AdvancedUserRecipe1306097511(BasicNewsRecipe):
|
||||
p.article-image-caption .credits {font-style: italic;font-size: 10px;}\
|
||||
div.article-image-caption {width: 246px;margin-bottom: 5px;margin-left: 10px;}\
|
||||
div.article-image-caption-2column {margin-bottom: 10px;width: 373px;} div.article-image-caption-3column {}\
|
||||
img {border:0px;} .img-mask {position:absolute;top:0px;left:0px;}'
|
||||
img {border:0px; padding:2px;} hr.merryhr {width:30%; border-width:0px; color:green; margin-left:5px; background-color: green} div.column-3 {background-color:#eee; width:50%; margin:2px; float:right; padding:2px;} div.column-3 module-title {border: 1px solid #aaa} div.article-box-fact div.subtitle {font-weight:bold; color:green;}'
|
||||
|
||||
remove_tags = [dict(name='div', attrs={'class':[ 'metroCommentFormWrap', 'related-links'
|
||||
'commentForm', 'metroCommentInnerWrap', 'article-slideshow-counter-container', 'article-slideshow-control', 'ad', 'header-links',
|
||||
'art-rgt','pluck-app pluck-comm', 'share-and-byline', 'article-tools-below-title', 'col-179 ', 'related-links', 'clear padding-top-15', 'share-tools',
|
||||
'article1','article-page-auto-pushes', 'footer-edit','clear']}),
|
||||
dict(name='div', attrs={'id':['article-2', 'article-4', 'article-1', 'navigation', 'footer', 'header', 'comments', 'sidebar', 'share-and-byline']}),
|
||||
dict(name='iframe')]
|
||||
|
||||
preprocess_regexps = [(re.compile(r'(<p>( |\s)*</p>|<a[^>]*>Tweet</a>|<a[^>]*>|</a>|<!--.*?-->)', re.DOTALL|re.IGNORECASE),lambda match: ''),
|
||||
(re.compile(r'( |\s\s)+\s*', re.DOTALL|re.IGNORECASE),lambda match: ' '),
|
||||
(re.compile(r'([\s>])([^\s>]+)(<span[^>]+) />', re.DOTALL|re.IGNORECASE),
|
||||
lambda match: match.group(1) + match.group(3) + '>' + match.group(2) + '</span>'),
|
||||
preprocess_regexps = [
|
||||
(re.compile(r'<img[^>]+top-line[^>]+>', re.DOTALL|re.IGNORECASE),
|
||||
lambda match: '<hr class="merryhr" />'),
|
||||
(re.compile(r'(<img[^>]+metronieuws\.nl/[^>]+/templates/[^>]+jpe?g[^>]+>|metronieuws\.nl/internal\-roxen\-unit\.gif)', re.DOTALL|re.IGNORECASE),
|
||||
lambda match: ''),
|
||||
]
|
||||
|
||||
def preprocess_html(self, soup):
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.setdefaults()
|
||||
mlog.addTextAndTag(['Show debug = on with level'], [str(mlog.debuglevel)])
|
||||
if KEEPSTATS == True:
|
||||
mlog.addDebug('Stats will be calculated')
|
||||
else:
|
||||
mlog.addTextAndTag(['Stats won\'t be calculated\nTo be enabled, stats must be true, currently','and debug level must be 1 or higher, currently'],[mstat.dokeepmystats, mlog.debuglevel])
|
||||
mlog.showDebug()
|
||||
myProcess = MerryProcess()
|
||||
myProcess.removeUnwantedTags(soup)
|
||||
return soup
|
||||
|
||||
def postprocess_html(self, soup, first):
|
||||
for tag in soup.findAll(lambda tag: tag.name.lower()=='img' and tag.has_key('src')):
|
||||
iurl = tag['src']
|
||||
img = Image()
|
||||
img.open(iurl)
|
||||
img.trim(0)
|
||||
img.save(iurl)
|
||||
myProcess = MerryProcess()
|
||||
myProcess.optimizeLayout(soup)
|
||||
if SHOWDEBUG0 == True:
|
||||
if KEEPSTATS == True:
|
||||
statinfo = 'generated stats:'
|
||||
statinfo += str(mstat.stats(mstat.statslist))
|
||||
print statinfo
|
||||
statinfo = 'generated stats (for removed tags):'
|
||||
statinfo += str(mstat.stats(mstat.removedtagslist))
|
||||
print statinfo
|
||||
#show all Debug info we forgot to report
|
||||
#Using print to be sure that this text will not be added at the end of the log.
|
||||
print '\n!!!!!unreported messages:\n(should be empty)\n'
|
||||
mlog.showDebug()
|
||||
return soup
|
||||
|
||||
feeds = [
|
||||
@ -95,6 +127,291 @@ class AdvancedUserRecipe1306097511(BasicNewsRecipe):
|
||||
(u'Familie', u'http://www.metronieuws.nl/rss.xml?c=1283166782-9'),
|
||||
(u'Blogs', u'http://www.metronieuws.nl/rss.xml?c=1295586825-6'),
|
||||
(u'Reizen', u'http://www.metronieuws.nl/rss.xml?c=1277377288-13'),
|
||||
(u'Carrière', u'http://www.metronieuws.nl/rss.xml?c=1278070988-1'),
|
||||
(u'Carrière', u'http://www.metronieuws.nl/rss.xml?c=1278070988-1'),
|
||||
(u'Sport', u'http://www.metronieuws.nl/rss.xml?c=1277377288-12')
|
||||
]
|
||||
|
||||
class MerryPreProcess():
|
||||
def replacePictures(self, soup):
|
||||
#to be implemented
|
||||
return soup
|
||||
|
||||
def optimizePicture(self,soup):
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addDebug('start image optimize')
|
||||
for tag in soup.findAll(lambda tag: tag.name.lower()=='img' and tag.has_key('src')):
|
||||
iurl = tag['src']
|
||||
img = Image()
|
||||
img.open(iurl)
|
||||
img.trim(0)
|
||||
img.save(iurl)
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addDebug('Images optimized')
|
||||
mlog.showDebug()
|
||||
return soup
|
||||
|
||||
class MerryExtract():
|
||||
def safeRemovePart(self, killingSoup, soupIsArray):
|
||||
if killingSoup and not killingSoup == None:
|
||||
if SHOWDEBUG2 == True:
|
||||
mlog.addTextAndTag(['items to remove'],[killingSoup])
|
||||
try:
|
||||
if soupIsArray == True:
|
||||
for killer in killingSoup:
|
||||
killer.extract()
|
||||
else:
|
||||
killingSoup.extract()
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('tag extracted')
|
||||
mlog.showDebug()
|
||||
if KEEPSTATS == True:
|
||||
try:
|
||||
mstat.addstat(mstat.removedtagslist,str(killingSoup.name))
|
||||
except:
|
||||
mstat.addstat(mstat.removedtagslist,'unknown')
|
||||
except:
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('tag extraction failed')
|
||||
mlog.showDebug()
|
||||
if KEEPSTATS == True:
|
||||
mstat.addstat(mstat.removedtagslist,'exception')
|
||||
return False
|
||||
else:
|
||||
return False
|
||||
return killingSoup
|
||||
|
||||
class MerryReplace():
|
||||
myKiller = MerryExtract()
|
||||
def replaceATag(self, soup):
|
||||
anchors = []
|
||||
anchors = soup.findAll('a')
|
||||
if anchors and not (anchors == None or anchors == []):
|
||||
try:
|
||||
for link in anchors:
|
||||
# print str(link)
|
||||
if link and not link == None:
|
||||
# print ('type: %s'%(str(type(link))))
|
||||
# print ('link: %s' % (link))
|
||||
myParent = link.parent
|
||||
# print str('parent: %s'%(myParent))
|
||||
try:
|
||||
myIndex = link.parent.index(link)
|
||||
hasIndex = True
|
||||
except:
|
||||
myIndex = 0
|
||||
hasIndex = False
|
||||
# print str('index %s'%(myIndex))
|
||||
if not link.string == None:
|
||||
# print 'link=notnone'
|
||||
if hasIndex == True:
|
||||
myParent.insert(myIndex, link.string)
|
||||
else:
|
||||
myParent.append(link.string)
|
||||
else:
|
||||
# print 'link=none'
|
||||
myParent.insert(myIndex, link.contents)
|
||||
self.myKiller.safeRemovePart(link, False)
|
||||
else:
|
||||
notshown = 'tag received is empty' # print
|
||||
except:
|
||||
notshown = 'tag received is empty' # print
|
||||
notshown
|
||||
return soup
|
||||
|
||||
class MerryProcess(BeautifulSoup):
|
||||
myKiller = MerryExtract()
|
||||
myReplacer = MerryReplace()
|
||||
myPrepare = MerryPreProcess()
|
||||
|
||||
def optimizeLayout(self,soup):
|
||||
self.myPrepare.optimizePicture(soup)
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addDebug('End of Optimize Layout')
|
||||
mlog.showDebug()
|
||||
return soup
|
||||
|
||||
def insertFacts(self, soup):
|
||||
allfacts = soup.findAll('div', {'class':re.compile('^article-box-fact.*$')})
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addTextAndTag(['allfacts'],[allfacts])
|
||||
mlog.showDebug()
|
||||
if allfacts and not allfacts == None:
|
||||
allfactsparent = soup.find('div', {'class':re.compile('^article-box-fact.*$')}).parent
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addTextAndTag(['allfactsparent'],[allfactsparent])
|
||||
mlog.showDebug()
|
||||
for part in allfactsparent:
|
||||
if not part in allfacts:
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addTextAndTag(['FOUND A non-fact'],[part])
|
||||
mlog.showDebug()
|
||||
self.myKiller.safeRemovePart(part, True)
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addTextAndTag(['New All Facts'],[allfacts])
|
||||
mlog.showDebug()
|
||||
articlefacts = soup.find('div', {'class':'article-box-fact column'})
|
||||
errorOccured=False
|
||||
if (articlefacts and not articlefacts==None):
|
||||
try:
|
||||
contenttag = soup.find('div', {'class':'article-body'})
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addTextAndTag(['curcontag'],[contenttag])
|
||||
mlog.showDebug()
|
||||
foundrighttag = False
|
||||
if contenttag and not contenttag == None:
|
||||
foundrighttag = True
|
||||
if SHOWDEBUG0 == True:
|
||||
if errorOccured == False:
|
||||
mlog.addTextAndTag(['type','curcontag (in while)'],[type(contenttag),contenttag])
|
||||
else:
|
||||
mlog.addDebug('Could not find right parent tag. Error Occured')
|
||||
mlog.showDebug()
|
||||
if foundrighttag == True:
|
||||
contenttag.insert(0, allfactsparent)
|
||||
if SHOWDEBUG2 == True:
|
||||
mlog.addTextAndTag(['added parent'],[soup.prettify()])
|
||||
mlog.showDebug()
|
||||
except:
|
||||
errorOccured=True
|
||||
mlog.addTrace()
|
||||
else:
|
||||
errorOccured=True
|
||||
if SHOWDEBUG0 == True and errorOccured == True:
|
||||
mlog.addTextAndTag(['no articlefacts'],[articlefacts])
|
||||
mlog.showDebug()
|
||||
return soup
|
||||
|
||||
def previousNextSibRemover(self, soup, previous=True, soupIsArray=False):
|
||||
findsibsof = soup
|
||||
firstpart = previous
|
||||
if findsibsof and not findsibsof == None:
|
||||
if soupIsArray == True:
|
||||
for foundsib in findsibsof:
|
||||
self.previousNextSibRemover(foundsib, firstpart, soupIsArray=False)
|
||||
else:
|
||||
if firstpart == True and soupIsArray == False:
|
||||
sibs = findsibsof.previousSiblingGenerator()
|
||||
else:
|
||||
sibs = findsibsof.nextSiblingGenerator()
|
||||
for sib in sibs:
|
||||
self.myKiller.safeRemovePart(sib, True)
|
||||
else:
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('Not any sib found')
|
||||
return
|
||||
|
||||
def removeUnwantedTags(self,soup):
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addTextAndTag(['Len of Soup before RemoveTagsByName'],[len(str(soup))])
|
||||
mlog.showDebug()
|
||||
self.removeTagsByName(soup)
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('Len of Soup before firstandlastpart: %s' % len(str(soup)))
|
||||
mlog.showDebug()
|
||||
self.insertFacts(soup)
|
||||
self.removeFirstAndLastPart(soup)
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('Len of Soup before unwantedpart: %s' % len(str(soup)))
|
||||
mlog.showDebug()
|
||||
self.removeUnwantedParts(soup)
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('Len of Soup before EmptyParts: %s' % len(str(soup)))
|
||||
mlog.showDebug()
|
||||
self.removeEmptyTags(soup)
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('Len of Soup after EmptyParts: %s' % len(str(soup)))
|
||||
mlog.showDebug()
|
||||
self.myReplacer.replaceATag(soup)
|
||||
return soup
|
||||
|
||||
def removeUnwantedParts(self, soup):
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('Len of Soup before UnwantedID: %s' % len(str(soup)))
|
||||
mlog.showDebug()
|
||||
self.removeUnwantedTagsByID(soup)
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('Len of Soup before Class: %s' % len(str(soup)))
|
||||
mlog.showDebug()
|
||||
self.removeUnwantedTagsByClass(soup)
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('Len of Soup before Style: %s' % len(str(soup)))
|
||||
mlog.showDebug()
|
||||
self.removeUnwantedTagsByStyle(soup)
|
||||
return soup
|
||||
|
||||
def removeUnwantedTagsByStyle(self,soup):
|
||||
self.removeArrayOfTags(soup.findAll(attrs={'style' : re.compile("^(.*(display\s?:\s?none|img-mask|white)\s?;?.*)$")}))
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addDebug('end remove by style')
|
||||
return soup
|
||||
|
||||
def removeArrayOfTags(self,souparray):
|
||||
return self.myKiller.safeRemovePart(souparray, True)
|
||||
|
||||
def removeUnwantedTagsByClass(self,soup):
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addDebug('start remove by class')
|
||||
self.removeArrayOfTags(soup.findAll("div", { "class" :re.compile('^(promo.*?|article-tools-below-title|metroCommentFormWrap|ad|share-tools|tools|header-links|related-links|padding-top-15)$')}))
|
||||
return soup
|
||||
|
||||
def removeUnwantedTagsByID(self,soup):
|
||||
defaultids = ['footer-extra',re.compile('^ad(\d+|adcomp.*?)?$'),'column-4-5','navigation','header',re.compile('^column-1-5-(top|bottom)$'),'footer','hidden_div','sidebar',re.compile('^article-\d$'),'comments','footer']
|
||||
for removeid in defaultids:
|
||||
if SHOWDEBUG1 == True:
|
||||
mlog.addDebug('RemoveTagByID, tag: %s, Len of Soup: %s' % (str(removeid), len(str(soup))))
|
||||
mlog.showDebug()
|
||||
self.removeArrayOfTags(soup.findAll(id=removeid))
|
||||
return soup
|
||||
|
||||
# def safeRemoveTag(self, subtree):
|
||||
# return self.myKiller.safeRemovePart(subtree, True)
|
||||
|
||||
|
||||
def removeTagsByName(self, soup):
|
||||
self.myKiller.safeRemovePart(soup.script, True)
|
||||
self.myKiller.safeRemovePart(soup.iframe, True)
|
||||
self.myKiller.safeRemovePart(soup.style, True)
|
||||
self.myKiller.safeRemovePart(soup.noscript, True)
|
||||
return soup
|
||||
|
||||
def removeEmptyTags(self,soup,run=0):
|
||||
if SHOWDEBUG0 == True:
|
||||
mlog.addDebug('starting removeEmptyTags')
|
||||
if SHOWDEBUG1 == True:
|
||||
run += 1
|
||||
mlog.addDebug(run)
|
||||
if SHOWDEBUG2 == True:
|
||||
mlog.addDebug(str(soup.prettify()))
|
||||
mlog.showDebug()
|
||||
emptymatches = re.compile('^( |\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
|
||||
|
@ -24,6 +24,7 @@ __Date__ = ''
|
||||
|
||||
'''
|
||||
Change Log:
|
||||
2011/12/01: take care of situation that in txt source parsing, the article content does start with special character u'\u3010'
|
||||
2011/10/21: fix a bug that hi-res img is unavailable in pages parsed from source txt
|
||||
2011/10/19: fix a bug in txt source parsing
|
||||
2011/10/17: disable fetching of premium content, also improved txt source parsing
|
||||
@ -533,12 +534,22 @@ class MPRecipe(BasicNewsRecipe):
|
||||
new_raw_html = '<html><head><title>Untitled</title></head><body><div class="images">'
|
||||
next_is_img_txt = False
|
||||
title_started = False
|
||||
title_break_reached = False
|
||||
met_article_start_char = False
|
||||
for item in splitter.split(raw_html):
|
||||
item = item.strip()
|
||||
if item.startswith(u'\u3010'):
|
||||
# if title already reached but break between title and content not yet found, record title_break_reached
|
||||
if title_started == True and title_break_reached == False and item == '':
|
||||
title_break_reached = True
|
||||
# if title reached and title_break_reached and met_article_start_char == False and item is not empty
|
||||
# start content
|
||||
elif title_started == True and title_break_reached == True and met_article_start_char == False:
|
||||
if item <> '':
|
||||
met_article_start_char = True
|
||||
new_raw_html = new_raw_html + '</div><div class="content"><p>' + item + '<p>\n'
|
||||
#if item.startswith(u'\u3010'):
|
||||
# met_article_start_char = True
|
||||
# new_raw_html = new_raw_html + '</div><div class="content"><p>' + item + '<p>\n'
|
||||
else:
|
||||
if next_is_img_txt == False:
|
||||
if item.startswith("=@"):
|
||||
@ -787,3 +798,4 @@ class MPRecipe(BasicNewsRecipe):
|
||||
|
||||
with nested(open(opf_path, 'wb'), open(ncx_path, 'wb')) as (opf_file, ncx_file):
|
||||
opf.render(opf_file, ncx_file)
|
||||
|
||||
|
@ -12,7 +12,7 @@ class Sueddeutsche(BasicNewsRecipe):
|
||||
|
||||
title = u'sueddeutsche.de'
|
||||
description = 'News from Germany'
|
||||
__author__ = 'Oliver Niesner and Armin Geller'
|
||||
__author__ = 'Oliver Niesner and Armin Geller' #AGe 2011-11-25
|
||||
use_embedded_content = False
|
||||
timefmt = ' [%d %b %Y]'
|
||||
oldest_article = 7
|
||||
@ -22,7 +22,7 @@ class Sueddeutsche(BasicNewsRecipe):
|
||||
|
||||
encoding = 'utf-8'
|
||||
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'),
|
||||
dict(name='div', attrs={'id':["bookmarking","themenbox","artikelfoot","CAD_AD",
|
||||
@ -47,7 +47,7 @@ class Sueddeutsche(BasicNewsRecipe):
|
||||
|
||||
extra_css = '''
|
||||
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; }
|
||||
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; }
|
||||
|
58
recipes/tvxs.recipe
Normal file
58
recipes/tvxs.recipe
Normal 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
98
recipes/vanityfair.recipe
Normal 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')
|
@ -283,8 +283,7 @@ class Install(Develop):
|
||||
class Sdist(Command):
|
||||
|
||||
description = 'Create a source distribution'
|
||||
DEST = os.path.join('dist', '%s-%s.tar.gz'%(__appname__, __version__))
|
||||
|
||||
DEST = os.path.join('dist', '%s-%s.tar.xz'%(__appname__, __version__))
|
||||
|
||||
def run(self, opts):
|
||||
if not self.e(self.d(self.DEST)):
|
||||
@ -313,7 +312,7 @@ class Sdist(Command):
|
||||
shutil.copy2(f, dest)
|
||||
|
||||
self.info('\tCreating tarfile...')
|
||||
subprocess.check_call(['tar', '-czf', self.a(self.DEST),
|
||||
subprocess.check_call(['tar', '-cJf', self.a(self.DEST),
|
||||
'calibre'], cwd=self.d(tdir))
|
||||
|
||||
def clean(self):
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 05:54+0000\n"
|
||||
"Last-Translator: Ysbeer <Unknown>\n"
|
||||
"Language-Team: Afrikaans <i18n@af.org.za>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:35+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:05+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: af\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:14+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Amharic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:36+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:05+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 05:57+0000\n"
|
||||
"Last-Translator: Mohammad Gamal <f2c2001@yahoo.com>\n"
|
||||
"Language-Team: Arabic <support@arabeyes.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:36+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:06+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: ar\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 05:38+0000\n"
|
||||
"Last-Translator: Vasif İsmayıloğlu MD <Unknown>\n"
|
||||
"Language-Team: Azerbaijani Turkish <linuxaz@azerimail.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:37+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:06+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -10,15 +10,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:26+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:39+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:08+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: bg\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17954,8 +17954,8 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "Долно саксонски"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -12,15 +12,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:18+0000\n"
|
||||
"Last-Translator: runa <runabh@gmail.com>\n"
|
||||
"Language-Team: Bengali (India) <discuss@lists.ankur.org.in>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:17+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:46+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17956,7 +17956,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:43+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Breton <brenux@free.fr>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:38+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:08+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: br\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -10,15 +10,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 07:15+0000\n"
|
||||
"Last-Translator: Nesiren Armin <Unknown>\n"
|
||||
"Language-Team: Bosanski <kde@lugbih.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:38+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:07+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17954,7 +17954,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:37+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Blin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:40+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:09+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-11-22 16:45+0000\n"
|
||||
"Last-Translator: Ferran Rius <frius64@hotmail.com>\n"
|
||||
"Language-Team: Catalan <linux@softcatala.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-23 05:19+0000\n"
|
||||
"X-Generator: Launchpad (build 14336)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:10+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: ca\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:24+0000\n"
|
||||
"Last-Translator: Reşat SABIQ <tilde.birlik@gmail.com>\n"
|
||||
"Language-Team: Crimean Tatar <tilde-birlik-tercime@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:41+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:10+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: crh\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr "Ndoola"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:51+0000\n"
|
||||
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
|
||||
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:41+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:11+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: cs\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 07:08+0000\n"
|
||||
"Last-Translator: Dafydd Tomos <Unknown>\n"
|
||||
"Language-Team: Welsh <cy@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:14+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:44+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: cy\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -16,15 +16,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:12+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Danish <dansk@klid.dk>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:42+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:11+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: da\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17961,7 +17961,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -17,15 +17,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:28+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:45+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:15+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: de\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17981,7 +17981,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:41+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:48+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:17+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: el\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17958,7 +17958,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:58+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Esperanto <translation-team-eo@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:43+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:13+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: eo\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -7,15 +7,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"PO-Revision-Date: 2011-11-22 19:47+0000\n"
|
||||
"Last-Translator: Fitoschido <fitoschido@gmail.com>\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-11-26 08:48+0000\n"
|
||||
"Last-Translator: Jellby <Unknown>\n"
|
||||
"Language-Team: Spanish <es@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-23 05:19+0000\n"
|
||||
"X-Generator: Launchpad (build 14336)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-27 05:24+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
|
||||
#. name for aaa
|
||||
msgid "Ghotuo"
|
||||
@ -4879,7 +4879,7 @@ msgstr "Chino mindong"
|
||||
|
||||
#. name for cdr
|
||||
msgid "Cinda-Regi-Tiyal"
|
||||
msgstr "Cinda-Regi-Tiyal"
|
||||
msgstr "Cinda-regi-tiyal"
|
||||
|
||||
#. name for cds
|
||||
msgid "Chadian Sign Language"
|
||||
@ -4895,7 +4895,7 @@ msgstr "Koda"
|
||||
|
||||
#. name for cea
|
||||
msgid "Chehalis; Lower"
|
||||
msgstr ""
|
||||
msgstr "Chehalis inferior"
|
||||
|
||||
#. name for ceb
|
||||
msgid "Cebuano"
|
||||
@ -4919,7 +4919,7 @@ msgstr "Centúúm"
|
||||
|
||||
#. name for cfa
|
||||
msgid "Dijim-Bwilim"
|
||||
msgstr "Dijim-Bwilim"
|
||||
msgstr "Dijim-bwilim"
|
||||
|
||||
#. name for cfd
|
||||
msgid "Cara"
|
||||
@ -4927,7 +4927,7 @@ msgstr "Cara"
|
||||
|
||||
#. name for cfg
|
||||
msgid "Como Karim"
|
||||
msgstr "Como Karim"
|
||||
msgstr "Como karim"
|
||||
|
||||
#. name for cfm
|
||||
msgid "Chin; Falam"
|
||||
@ -5047,7 +5047,7 @@ msgstr ""
|
||||
|
||||
#. name for cia
|
||||
msgid "Cia-Cia"
|
||||
msgstr "Cia-Cia"
|
||||
msgstr "Cia-cia"
|
||||
|
||||
#. name for cib
|
||||
msgid "Gbe; Ci"
|
||||
@ -5079,7 +5079,7 @@ msgstr "Cimbrio"
|
||||
|
||||
#. name for cin
|
||||
msgid "Cinta Larga"
|
||||
msgstr "Cinta Larga"
|
||||
msgstr "Cinta larga"
|
||||
|
||||
#. name for cip
|
||||
msgid "Chiapanec"
|
||||
@ -5107,7 +5107,7 @@ msgstr "Chru"
|
||||
|
||||
#. name for cjh
|
||||
msgid "Chehalis; Upper"
|
||||
msgstr ""
|
||||
msgstr "Chehalis superior"
|
||||
|
||||
#. name for cji
|
||||
msgid "Chamalal"
|
||||
@ -5127,7 +5127,7 @@ msgstr "Chenapian"
|
||||
|
||||
#. name for cjo
|
||||
msgid "Ashéninka Pajonal"
|
||||
msgstr "Ashéninka Pajonal"
|
||||
msgstr "Ashéninka pajonal"
|
||||
|
||||
#. name for cjp
|
||||
msgid "Cabécar"
|
||||
@ -5195,11 +5195,11 @@ msgstr "Caka"
|
||||
|
||||
#. name for cky
|
||||
msgid "Cakfem-Mushere"
|
||||
msgstr "Cakfem-Mushere"
|
||||
msgstr "Cakfem-mushere"
|
||||
|
||||
#. name for ckz
|
||||
msgid "Cakchiquel-Quiché Mixed Language"
|
||||
msgstr "Cakchiquel-Quiché idioma mixto"
|
||||
msgstr "Idioma mixto cakchiquel-quiché"
|
||||
|
||||
#. name for cla
|
||||
msgid "Ron"
|
||||
@ -5227,7 +5227,7 @@ msgstr "Chakali"
|
||||
|
||||
#. name for clk
|
||||
msgid "Idu-Mishmi"
|
||||
msgstr "Idu-Mishmi"
|
||||
msgstr "Idu-mishmi"
|
||||
|
||||
#. name for cll
|
||||
msgid "Chala"
|
||||
@ -5267,7 +5267,7 @@ msgstr "Mongol clásico"
|
||||
|
||||
#. name for cmi
|
||||
msgid "Emberá-Chamí"
|
||||
msgstr "Emberá-Chamí"
|
||||
msgstr "Emberá-chamí"
|
||||
|
||||
#. name for cml
|
||||
msgid "Campalagian"
|
||||
@ -5367,7 +5367,7 @@ msgstr "Cocopa"
|
||||
|
||||
#. name for cod
|
||||
msgid "Cocama-Cocamilla"
|
||||
msgstr "Cocama-Cocamilla"
|
||||
msgstr "Cocama-cocamilla"
|
||||
|
||||
#. name for coe
|
||||
msgid "Koreguaje"
|
||||
@ -5383,7 +5383,7 @@ msgstr "Chong"
|
||||
|
||||
#. name for coh
|
||||
msgid "Chonyi-Dzihana-Kauma"
|
||||
msgstr "Chonyi-Dzihana-Kauma"
|
||||
msgstr "Chonyi-dzihana-kauma"
|
||||
|
||||
#. name for coj
|
||||
msgid "Cochimi"
|
||||
@ -5395,7 +5395,7 @@ msgstr ""
|
||||
|
||||
#. name for col
|
||||
msgid "Columbia-Wenatchi"
|
||||
msgstr "Columbia-Wenatchi"
|
||||
msgstr "Columbia-wenatchi"
|
||||
|
||||
#. name for com
|
||||
msgid "Comanche"
|
||||
@ -5435,7 +5435,7 @@ msgstr "Wamey"
|
||||
|
||||
#. name for cov
|
||||
msgid "Cao Miao"
|
||||
msgstr "Cao Miao"
|
||||
msgstr "Cao miao"
|
||||
|
||||
#. name for cow
|
||||
msgid "Cowlitz"
|
||||
@ -5463,7 +5463,7 @@ msgstr ""
|
||||
|
||||
#. name for cpc
|
||||
msgid "Ajyíninka Apurucayali"
|
||||
msgstr "Ajyíninka Apurucayali"
|
||||
msgstr "Ajyíninka apurucayali"
|
||||
|
||||
#. name for cpg
|
||||
msgid "Greek; Cappadocian"
|
||||
@ -5635,7 +5635,7 @@ msgstr ""
|
||||
|
||||
#. name for csk
|
||||
msgid "Jola-Kasa"
|
||||
msgstr "Jola-Kasa"
|
||||
msgstr "Jola-kasa"
|
||||
|
||||
#. name for csl
|
||||
msgid "Chinese Sign Language"
|
||||
@ -5715,7 +5715,7 @@ msgstr "Chhintange"
|
||||
|
||||
#. name for cto
|
||||
msgid "Emberá-Catío"
|
||||
msgstr "Emberá-Catío"
|
||||
msgstr "Emberá-catío"
|
||||
|
||||
#. name for ctp
|
||||
msgid "Chatino; Western Highland"
|
||||
@ -5763,7 +5763,7 @@ msgstr "Cuiba"
|
||||
|
||||
#. name for cuj
|
||||
msgid "Mashco Piro"
|
||||
msgstr "Mashco Piro"
|
||||
msgstr "Mashco piro"
|
||||
|
||||
#. name for cuk
|
||||
msgid "Kuna; San Blas"
|
||||
@ -5799,7 +5799,7 @@ msgstr ""
|
||||
|
||||
#. name for cuu
|
||||
msgid "Tai Ya"
|
||||
msgstr "Tai Ya"
|
||||
msgstr "Tai ya"
|
||||
|
||||
#. name for cuv
|
||||
msgid "Cuvok"
|
||||
@ -5951,7 +5951,7 @@ msgstr "Dargwa"
|
||||
|
||||
#. name for das
|
||||
msgid "Daho-Doo"
|
||||
msgstr "Daho-Doo"
|
||||
msgstr "Daho-doo"
|
||||
|
||||
#. name for dau
|
||||
msgid "Daju; Dar Sila"
|
||||
@ -5975,7 +5975,7 @@ msgstr "Dao"
|
||||
|
||||
#. name for dba
|
||||
msgid "Bangi Me"
|
||||
msgstr "Bangi Me"
|
||||
msgstr "Bangi me"
|
||||
|
||||
#. name for dbb
|
||||
msgid "Deno"
|
||||
@ -6087,7 +6087,7 @@ msgstr ""
|
||||
|
||||
#. name for ddw
|
||||
msgid "Dawera-Daweloor"
|
||||
msgstr "Dawera-Daweloor"
|
||||
msgstr "Dawera-daweloor"
|
||||
|
||||
#. name for dec
|
||||
msgid "Dagik"
|
||||
@ -6175,7 +6175,7 @@ msgstr ""
|
||||
|
||||
#. name for dgd
|
||||
msgid "Dagaari Dioula"
|
||||
msgstr "Dagaari Dioula"
|
||||
msgstr "Dagaari dioula"
|
||||
|
||||
#. name for dge
|
||||
msgid "Degenan"
|
||||
@ -6363,7 +6363,7 @@ msgstr "Dinka noroccidental"
|
||||
|
||||
#. name for dix
|
||||
msgid "Dixon Reef"
|
||||
msgstr "Dixon Reef"
|
||||
msgstr "Dixon reef"
|
||||
|
||||
#. name for diy
|
||||
msgid "Diuwe"
|
||||
@ -6691,7 +6691,7 @@ msgstr "Darling"
|
||||
|
||||
#. name for drn
|
||||
msgid "Damar; West"
|
||||
msgstr ""
|
||||
msgstr "Damar occidental"
|
||||
|
||||
#. name for dro
|
||||
msgid "Melanau; Daro-Matu"
|
||||
@ -6811,7 +6811,7 @@ msgstr "Duna"
|
||||
|
||||
#. name for dud
|
||||
msgid "Hun-Saare"
|
||||
msgstr "Hun-Saare"
|
||||
msgstr "Hun-saare"
|
||||
|
||||
#. name for due
|
||||
msgid "Agta; Umiray Dumaget"
|
||||
@ -6827,7 +6827,7 @@ msgstr "Duruma"
|
||||
|
||||
#. name for duh
|
||||
msgid "Dungra Bhil"
|
||||
msgstr "Dungra Bhil"
|
||||
msgstr "Dungra bhil"
|
||||
|
||||
#. name for dui
|
||||
msgid "Dumun"
|
||||
@ -6851,7 +6851,7 @@ msgstr "Neerlandés medio (ca. 1050-1350)"
|
||||
|
||||
#. name for dun
|
||||
msgid "Dusun Deyah"
|
||||
msgstr "Dusun Deyah"
|
||||
msgstr "Dusun deyah"
|
||||
|
||||
#. name for duo
|
||||
msgid "Agta; Dupaninan"
|
||||
@ -6863,7 +6863,7 @@ msgstr "Duano"
|
||||
|
||||
#. name for duq
|
||||
msgid "Dusun Malang"
|
||||
msgstr "Dusun Malang"
|
||||
msgstr "Dusun malang"
|
||||
|
||||
#. name for dur
|
||||
msgid "Dii"
|
||||
@ -6883,7 +6883,7 @@ msgstr "Duvle"
|
||||
|
||||
#. name for duw
|
||||
msgid "Dusun Witu"
|
||||
msgstr "Dusun Witu"
|
||||
msgstr "Dusun witu"
|
||||
|
||||
#. name for dux
|
||||
msgid "Duungooma"
|
||||
@ -6915,7 +6915,7 @@ msgstr "Dawro"
|
||||
|
||||
#. name for dws
|
||||
msgid "Dutton World Speedwords"
|
||||
msgstr "Dutton World Speedwords (lengua de compresión de palabras de Dutton)"
|
||||
msgstr "Speedwords mundial Dutton"
|
||||
|
||||
#. name for dww
|
||||
msgid "Dawawa"
|
||||
@ -6951,7 +6951,7 @@ msgstr "Dyangadi"
|
||||
|
||||
#. name for dyo
|
||||
msgid "Jola-Fonyi"
|
||||
msgstr "Jola-Fonyi"
|
||||
msgstr "Jola-fonyi"
|
||||
|
||||
#. name for dyu
|
||||
msgid "Dyula"
|
||||
@ -6995,7 +6995,7 @@ msgstr "Bontok oriental"
|
||||
|
||||
#. name for ebo
|
||||
msgid "Teke-Ebo"
|
||||
msgstr "Teke-Ebo"
|
||||
msgstr "Teke-ebo"
|
||||
|
||||
#. name for ebr
|
||||
msgid "Ebrié"
|
||||
@ -7007,7 +7007,7 @@ msgstr "Embu"
|
||||
|
||||
#. name for ecr
|
||||
msgid "Eteocretan"
|
||||
msgstr "Eteocretan"
|
||||
msgstr "Eteocretense"
|
||||
|
||||
#. name for ecs
|
||||
msgid "Ecuadorian Sign Language"
|
||||
@ -17950,8 +17950,8 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr ""
|
||||
msgid "German; Low"
|
||||
msgstr "Bajo alemán"
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 07:11+0000\n"
|
||||
"Last-Translator: Tõivo Leedjärv <Unknown>\n"
|
||||
"Language-Team: Estonian <gnome-et@linux.ee>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:43+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:13+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: et\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 15:37+0000\n"
|
||||
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
|
||||
"Language-Team: Euskara <itzulpena@comtropos.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:37+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:07+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: eu\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:19+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Persian <translation-team-fa@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:02+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:32+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: fa\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:07+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:44+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:14+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: fi\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -12,15 +12,15 @@ msgstr ""
|
||||
"Project-Id-Version: fr\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:36+0000\n"
|
||||
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
|
||||
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:45+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:14+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: fr\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17960,8 +17960,8 @@ msgid "Ndoola"
|
||||
msgstr "ndoola"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "bas Saxon"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -14,15 +14,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 15:51+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Irish <ga@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:46+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:16+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: ga\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17996,7 +17996,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:12+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Geez\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:46+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:15+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:34+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Galician <proxecto@trasno.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:47+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:16+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: gl\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,8 +17955,8 @@ msgid "Ndoola"
|
||||
msgstr "Ndoola"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "Saxón baixo"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:46+0000\n"
|
||||
"Last-Translator: Ankit Patel <ankit644@yahoo.com>\n"
|
||||
"Language-Team: Gujarati <indianoss-gujarati@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:48+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:18+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: gu\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -10,15 +10,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 06:12+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <Unknown>\n"
|
||||
"Language-Team: Hebrew <kde-il@yahoogroups.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:49+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:18+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: he\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17954,7 +17954,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:03+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Hindi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:49+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:19+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 06:17+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <Unknown>\n"
|
||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:06+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:36+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: hr\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-11-12 07:52+0000\n"
|
||||
"Last-Translator: Devilinside <Unknown>\n"
|
||||
"Language-Team: Hungarian <debian-l10n-hungarian@lists.d.o>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-13 05:48+0000\n"
|
||||
"X-Generator: Launchpad (build 14277)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:19+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"X-Poedit-Country: HUNGARY\n"
|
||||
"Language: hu\n"
|
||||
"X-Poedit-Language: Hungarian\n"
|
||||
@ -18009,7 +18009,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -10,15 +10,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:05+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Indonesia <de@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:51+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:20+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17954,7 +17954,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -10,15 +10,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 09:09+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <Unknown>\n"
|
||||
"Language-Team: Icelandic <kde-isl@molar.is>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:50+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:20+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: is\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17954,7 +17954,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:49+0000\n"
|
||||
"Last-Translator: Milo Casagrande <milo@casagrande.name>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:51+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:21+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: it\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17956,8 +17956,8 @@ msgid "Ndoola"
|
||||
msgstr "Ndoola"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "Sassone basso"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 15:44+0000\n"
|
||||
"Last-Translator: IIDA Yosiaki <iida@gnu.org>\n"
|
||||
"Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:52+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:21+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: ja\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -18323,7 +18323,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 15:57+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Kannada <debian-l10n-kannada@lists.debian.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:52+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:22+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: kn\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,8 +17953,8 @@ msgid "Ndoola"
|
||||
msgstr "ಎನ್ಡೂಲಾ"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "ಸ್ಯಾಕ್ಸೋನ್; ಲೋ"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 04:09+0000\n"
|
||||
"Last-Translator: Eungkyu Song <Unknown>\n"
|
||||
"Language-Team: Korean <ko@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:54+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:24+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: ko\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:38+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Konkani\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:53+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:23+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:08+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:55+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:25+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: lt\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17954,8 +17954,8 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "Saksų žemaičių"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 09:02+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <Unknown>\n"
|
||||
"Language-Team: Latvian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:55+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:24+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 03:56+0000\n"
|
||||
"Last-Translator: James Gasson <Unknown>\n"
|
||||
"Language-Team: Maori <james.gasson@clear.net.nz>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:56+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:26+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: mi\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 03:58+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <Unknown>\n"
|
||||
"Language-Team: Macedonian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:56+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:25+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:18+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Mongolian <mn@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:58+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:28+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: mn\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:21+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Marathi <fedora-trans-mr@redhat.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:57+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:26+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: mr\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,8 +17955,8 @@ msgid "Ndoola"
|
||||
msgstr "न्दुला"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "सॉक्सोन; लो"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 06:24+0000\n"
|
||||
"Last-Translator: Hasbullah Bin Pit <Unknown>\n"
|
||||
"Language-Team: Projek Gabai <gabai-penyumbang@lists.sourceforge.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:57+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:27+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17957,7 +17957,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -10,15 +10,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:49+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Maltese <mt@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:58+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:28+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: mt\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17954,7 +17954,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:46+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Norsk bokmål\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:59+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:29+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-11-03 23:08+0000\n"
|
||||
"Last-Translator: drMerry <Unknown>\n"
|
||||
"Language-Team: Dutch <vertaling@vrijschrift.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-05 04:47+0000\n"
|
||||
"X-Generator: Launchpad (build 14231)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:12+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: nl\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,8 +17955,8 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "Saksisch; laag"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:45+0000\n"
|
||||
"Last-Translator: Karl Ove Hufthammer <karl@huftis.org>\n"
|
||||
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:59+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:29+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: nn\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -7,15 +7,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 05:46+0000\n"
|
||||
"Last-Translator: Jerry Thobejane <Unknown>\n"
|
||||
"Language-Team: Northern Sotho <sepedi@translate.org.za>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:00+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:30+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: nso\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17951,7 +17951,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:43+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: OCCITAN <laborde@crpp.u-bordeaux.fr>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:01+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:31+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:01+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Oriya <translation-team-or@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:01+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:31+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: or\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,8 +17952,8 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "ସାକ୍ସନ; ଧୀର"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -13,15 +13,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:54+0000\n"
|
||||
"Last-Translator: A S Alam <aalam@users.sf.net>\n"
|
||||
"Language-Team: Punjabi <punjabi-l10n@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:02+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:32+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: pa\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17957,8 +17957,8 @@ msgid "Ndoola"
|
||||
msgstr "ਨਡੂਲਾ"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "ਸੈਕਸੋਨ; ਲੋ"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -12,15 +12,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:01+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:03+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:33+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: pl\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17956,8 +17956,8 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "dolnosaksoński"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 05:58+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <Unknown>\n"
|
||||
"Language-Team: Pushto\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:04+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:34+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:52+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Portuguese <pt@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:04+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:34+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: pt\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:27+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Brazilian Portuguese\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:17+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:47+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 05:33+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <Unknown>\n"
|
||||
"Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:05+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:35+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: ro\n"
|
||||
"PO-Creation-Date: 2000-09-24 15:45+0300\n"
|
||||
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -12,15 +12,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:14+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:05+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:35+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: ru\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17956,7 +17956,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:15+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 04:53+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:22+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: rw\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -10,15 +10,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 05:52+0000\n"
|
||||
"Last-Translator: Alastair McKinstry <Unknown>\n"
|
||||
"Language-Team: Slovak <sk-i18n@linux.sk>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:07+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:37+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: sk\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17954,7 +17954,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 15:39+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Slovenian <translation-team-sl@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:08+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:37+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: sl\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -7,15 +7,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 15:42+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Serbian <gnu@prevod.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:06+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:36+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: sr\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -7,15 +7,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:43+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Serbian <gnu@prevod.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:19+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:49+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: sr\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -29,15 +29,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:53+0000\n"
|
||||
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:09+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:39+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: sv\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -18012,7 +18012,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -12,15 +12,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:31+0000\n"
|
||||
"Last-Translator: Felix <ifelix25@gmail.com>\n"
|
||||
"Language-Team: Tamil <gnome-tamil-translation@googlegroups.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:09+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:39+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"X-Poedit-Country: INDIA\n"
|
||||
"Language: ta\n"
|
||||
"X-Poedit-Language: Tamil\n"
|
||||
@ -17958,8 +17958,8 @@ msgid "Ndoola"
|
||||
msgstr "நடூலா"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "சாக்ஸோன்; குறைந்த"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:26+0000\n"
|
||||
"Last-Translator: Theppitak Karoonboonyanan <thep@linux.thai.net>\n"
|
||||
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:10+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:40+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: th\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:09+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Tigrinya\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:12+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:41+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:04+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Tigre\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:11+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:41+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-11-11 00:16+0000\n"
|
||||
"Last-Translator: kulkke <Unknown>\n"
|
||||
"Language-Team: Turkish <gnome-turk@gnome.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-12 04:48+0000\n"
|
||||
"X-Generator: Launchpad (build 14277)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:42+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: tr\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17958,7 +17958,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 17:53+0000\n"
|
||||
"Last-Translator: al Beri <tatarish.l10n@gmail.com>\n"
|
||||
"Language-Team: Tatarish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:10+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:40+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -11,15 +11,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 15:33+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:13+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:43+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: uk\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,8 +17955,8 @@ msgid "Ndoola"
|
||||
msgstr "ндоола"
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgstr "саксонська (нижня)"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
msgid "Ndunga"
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 07:51+0000\n"
|
||||
"Last-Translator: Fhatuwani Rambau <Unknown>\n"
|
||||
"Language-Team: Venda <venda@translate.org.za>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:13+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:43+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: ve\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 16:56+0000\n"
|
||||
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
|
||||
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:14+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:44+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: vi\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 15:35+0000\n"
|
||||
"Last-Translator: Pablo Saratxaga <pablo@walon.org>\n"
|
||||
"Language-Team: Walloon <linux-wa@walon.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:15+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:45+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 05:51+0000\n"
|
||||
"Last-Translator: Antoinette Dekeni <Unknown>\n"
|
||||
"Language-Team: Xhosa <xhosa@translate.org.za>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:15+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:45+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: xh\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -10,7 +10,7 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-09-27 18:09+0000\n"
|
||||
"Last-Translator: LI Daobing <lidaobing@gmail.com>\n"
|
||||
"Language-Team: Chinese (simplified) <translation-team-zh-"
|
||||
@ -18,8 +18,8 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:18+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:48+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: zh_CN\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17955,7 +17955,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -8,15 +8,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 03:30+0000\n"
|
||||
"Last-Translator: Joe Man <Unknown>\n"
|
||||
"Language-Team: Traditional Chinese <zh-l10n@linux.org.tw>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:18+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:48+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: \n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17952,7 +17952,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -9,15 +9,15 @@ msgstr ""
|
||||
"Project-Id-Version: iso_639_3\n"
|
||||
"Report-Msgid-Bugs-To: Debian iso-codes team <pkg-isocodes-"
|
||||
"devel@lists.alioth.debian.org>\n"
|
||||
"POT-Creation-Date: 2011-09-27 14:31+0000\n"
|
||||
"POT-Creation-Date: 2011-11-25 14:01+0000\n"
|
||||
"PO-Revision-Date: 2011-08-27 08:38+0000\n"
|
||||
"Last-Translator: Thobile Mhlongo <Unknown>\n"
|
||||
"Language-Team: Zulu <zulu@translate.org.za>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-09-28 05:16+0000\n"
|
||||
"X-Generator: Launchpad (build 14049)\n"
|
||||
"X-Launchpad-Export-Date: 2011-11-26 05:46+0000\n"
|
||||
"X-Generator: Launchpad (build 14381)\n"
|
||||
"Language: zu\n"
|
||||
|
||||
#. name for aaa
|
||||
@ -17953,7 +17953,7 @@ msgid "Ndoola"
|
||||
msgstr ""
|
||||
|
||||
#. name for nds
|
||||
msgid "Saxon; Low"
|
||||
msgid "German; Low"
|
||||
msgstr ""
|
||||
|
||||
#. name for ndt
|
||||
|
@ -25,12 +25,12 @@ MOBILEREAD = 'ftp://dev.mobileread.com/calibre/'
|
||||
def installers():
|
||||
installers = list(map(installer_name, ('dmg', 'msi', 'tar.bz2')))
|
||||
installers.append(installer_name('tar.bz2', is64bit=True))
|
||||
installers.insert(0, 'dist/%s-%s.tar.gz'%(__appname__, __version__))
|
||||
installers.insert(0, 'dist/%s-%s.tar.xz'%(__appname__, __version__))
|
||||
installers.append('dist/%s-portable-%s.zip'%(__appname__, __version__))
|
||||
return installers
|
||||
|
||||
def installer_description(fname):
|
||||
if fname.endswith('.tar.gz'):
|
||||
if fname.endswith('.tar.xz'):
|
||||
return 'Source code'
|
||||
if fname.endswith('.tar.bz2'):
|
||||
bits = '32' if 'i686' in fname else '64'
|
||||
@ -117,7 +117,7 @@ class UploadToGoogleCode(Command): # {{{
|
||||
|
||||
def re_upload(self):
|
||||
fnames = set([os.path.basename(x) for x in installers() if not
|
||||
x.endswith('.tar.gz') and os.path.exists(x)])
|
||||
x.endswith('.tar.xz') and os.path.exists(x)])
|
||||
existing = set(self.old_files.keys()).intersection(fnames)
|
||||
br = self.login_to_gmail()
|
||||
for x in fnames:
|
||||
@ -134,17 +134,19 @@ class UploadToGoogleCode(Command): # {{{
|
||||
|
||||
def upload_one(self, fname):
|
||||
self.info('\nUploading', fname)
|
||||
typ = 'Type-' + ('Source' if fname.endswith('.gz') else 'Archive' if
|
||||
typ = 'Type-' + ('Source' if fname.endswith('.xz') else 'Archive' if
|
||||
fname.endswith('.zip') else 'Installer')
|
||||
ext = os.path.splitext(fname)[1][1:]
|
||||
op = 'OpSys-'+{'msi':'Windows','zip':'Windows',
|
||||
'dmg':'OSX','bz2':'Linux','gz':'All'}[ext]
|
||||
'dmg':'OSX','bz2':'Linux','xz':'All'}[ext]
|
||||
desc = installer_description(fname)
|
||||
start = time.time()
|
||||
for i in range(5):
|
||||
try:
|
||||
path = self.upload(os.path.abspath(fname), desc,
|
||||
labels=[typ, op, 'Featured'])
|
||||
except KeyboardInterrupt:
|
||||
raise SystemExit(1)
|
||||
except:
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
@ -169,8 +171,10 @@ class UploadToGoogleCode(Command): # {{{
|
||||
bname = os.path.basename(fname)
|
||||
if bname in self.old_files:
|
||||
path = 'http://calibre-ebook.googlecode.com/files/'+bname
|
||||
self.info('%s already uploaded, skipping. Assuming URL is: %s',
|
||||
bname, path)
|
||||
self.info(
|
||||
'%s already uploaded, skipping. Assuming URL is: %s'%(
|
||||
bname, path))
|
||||
self.old_files.pop(bname)
|
||||
else:
|
||||
path = self.upload_one(fname)
|
||||
self.paths[bname] = path
|
||||
@ -326,6 +330,8 @@ class UploadToSourceForge(Command): # {{{
|
||||
check_call(['rsync', '-z', '--progress', '-e', 'ssh -x', x,
|
||||
'%s,%s@frs.sourceforge.net:%s'%(self.USERNAME, self.PROJECT,
|
||||
self.rdir+'/')])
|
||||
except KeyboardInterrupt:
|
||||
raise SystemExit(1)
|
||||
except:
|
||||
print ('\nUpload failed, trying again in 30 seconds')
|
||||
time.sleep(30)
|
||||
@ -469,11 +475,11 @@ class UploadToServer(Command): # {{{
|
||||
description = 'Upload miscellaneous data to calibre server'
|
||||
|
||||
def run(self, opts):
|
||||
check_call('ssh divok rm -f %s/calibre-\*.tar.gz'%DOWNLOADS, shell=True)
|
||||
#check_call('scp dist/calibre-*.tar.gz divok:%s/'%DOWNLOADS, shell=True)
|
||||
check_call('gpg --armor --detach-sign dist/calibre-*.tar.gz',
|
||||
check_call('ssh divok rm -f %s/calibre-\*.tar.xz'%DOWNLOADS, shell=True)
|
||||
#check_call('scp dist/calibre-*.tar.xz divok:%s/'%DOWNLOADS, shell=True)
|
||||
check_call('gpg --armor --detach-sign dist/calibre-*.tar.xz',
|
||||
shell=True)
|
||||
check_call('scp dist/calibre-*.tar.gz.asc divok:%s/signatures/'%DOWNLOADS,
|
||||
check_call('scp dist/calibre-*.tar.xz.asc divok:%s/signatures/'%DOWNLOADS,
|
||||
shell=True)
|
||||
check_call('ssh divok bzr update /usr/local/calibre',
|
||||
shell=True)
|
||||
|
@ -4,7 +4,7 @@ __license__ = 'GPL v3'
|
||||
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
__appname__ = u'calibre'
|
||||
numeric_version = (0, 8, 28)
|
||||
numeric_version = (0, 8, 29)
|
||||
__version__ = u'.'.join(map(unicode, numeric_version))
|
||||
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"
|
||||
|
||||
|
@ -255,7 +255,7 @@ class LRXMetadataReader(MetadataReaderPlugin):
|
||||
class MOBIMetadataReader(MetadataReaderPlugin):
|
||||
|
||||
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'
|
||||
|
||||
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.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.eb600.driver import (EB600, COOL_ER, SHINEBOOK,
|
||||
POCKETBOOK360, GER2, ITALICA, ECLICTO, DBOOK, INVESBOOK,
|
||||
@ -646,7 +646,7 @@ plugins += [
|
||||
plugins += [
|
||||
HANLINV3,
|
||||
HANLINV5,
|
||||
BLACKBERRY,
|
||||
BLACKBERRY, PLAYBOOK,
|
||||
CYBOOK,
|
||||
ORIZON,
|
||||
ILIAD,
|
||||
|
@ -39,15 +39,15 @@ def get_connected_device():
|
||||
if ok:
|
||||
dev = d
|
||||
dev.reset(log_packets=False, detected_device=det)
|
||||
connected_devices.append(dev)
|
||||
connected_devices.append((det, dev))
|
||||
|
||||
if dev is None:
|
||||
print >>sys.stderr, 'Unable to find a connected ebook reader.'
|
||||
return
|
||||
|
||||
for d in connected_devices:
|
||||
for det, d in connected_devices:
|
||||
try:
|
||||
d.open(None)
|
||||
d.open(det, None)
|
||||
except:
|
||||
continue
|
||||
else:
|
||||
@ -121,7 +121,7 @@ def debug(ioreg_to_tmp=False, buf=None):
|
||||
out('Trying to open', dev.name, '...', end=' ')
|
||||
try:
|
||||
dev.reset(detected_device=det)
|
||||
dev.open(None)
|
||||
dev.open(det, None)
|
||||
out('OK')
|
||||
except:
|
||||
import traceback
|
||||
|
@ -167,7 +167,7 @@ class ANDROID(USBMS):
|
||||
'MB525', 'ANDROID2.3', 'SGH-I997', 'GT-I5800_CARD', 'MB612',
|
||||
'GT-S5830_CARD', 'GT-S5570_CARD', 'MB870', 'MID7015A',
|
||||
'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',
|
||||
'FILE-STOR_GADGET', 'SGH-T959', 'SAMSUNG_ANDROID', 'GT-P1000_CARD',
|
||||
'A70S', 'A101IT', '7', 'INCREDIBLE', 'A7EB', 'SGH-T849_CARD',
|
||||
@ -199,6 +199,18 @@ class ANDROID(USBMS):
|
||||
dirs = list(map(aldiko_tweak, 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):
|
||||
|
||||
name = 'S60 driver'
|
||||
|
@ -808,7 +808,7 @@ class ITUNES(DriverBase):
|
||||
self.log.info("ITUNES.get_file(): exporting '%s'" % path)
|
||||
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
|
||||
detected but before any other functions that communicate with the device.
|
||||
@ -824,7 +824,7 @@ class ITUNES(DriverBase):
|
||||
'''
|
||||
|
||||
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
|
||||
# previously disabled the dialog
|
||||
@ -3224,7 +3224,7 @@ class ITUNES_ASYNC(ITUNES):
|
||||
only_presence=False):
|
||||
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
|
||||
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
|
||||
'''
|
||||
if DEBUG:
|
||||
self.log.info("ITUNES_ASYNC.open()")
|
||||
self.log.info("ITUNES_ASYNC.open(connected_device: %s)" % repr(connected_device))
|
||||
|
||||
# Confirm/create thumbs archive
|
||||
if not os.path.exists(self.cache_dir):
|
||||
|
@ -59,9 +59,9 @@ class BAMBOOK(DeviceConfig, DevicePlugin):
|
||||
|
||||
def reset(self, key='-1', log_packets=False, report_progress=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
|
||||
if not is_bambook_lib_ready():
|
||||
raise OpenFeedback(_("Unable to connect to Bambook, you need to install Bambook library first."))
|
||||
|
@ -28,3 +28,26 @@ class BLACKBERRY(USBMS):
|
||||
|
||||
EBOOK_DIR_MAIN = 'eBooks'
|
||||
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
|
||||
|
@ -79,7 +79,7 @@ class FOLDER_DEVICE(USBMS):
|
||||
only_presence=False):
|
||||
return self.is_connected, self
|
||||
|
||||
def open(self, library_uuid):
|
||||
def open(self, connected_device, library_uuid):
|
||||
self.current_library_uuid = library_uuid
|
||||
if not self._main_prefix:
|
||||
return False
|
||||
|
@ -133,8 +133,14 @@ class DevicePlugin(Plugin):
|
||||
if debug:
|
||||
self.print_usb_device_info(device_id)
|
||||
if only_presence or self.can_handle_windows(device_id, debug=debug):
|
||||
return True
|
||||
return False
|
||||
try:
|
||||
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):
|
||||
if bcd is None or len(bcd) == 0:
|
||||
@ -154,7 +160,7 @@ class DevicePlugin(Plugin):
|
||||
'''
|
||||
if iswindows:
|
||||
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 = self.VENDOR_ID if hasattr(self.VENDOR_ID, '__len__') else [self.VENDOR_ID]
|
||||
@ -224,7 +230,7 @@ class DevicePlugin(Plugin):
|
||||
|
||||
return True
|
||||
|
||||
def open(self, library_uuid):
|
||||
def open(self, connected_device, library_uuid):
|
||||
'''
|
||||
Perform any device specific initialization. Called after the device is
|
||||
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
|
||||
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()
|
||||
|
||||
|
@ -287,7 +287,7 @@ class KINDLE2(KINDLE):
|
||||
name = 'Kindle 2/3 Device Interface'
|
||||
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
|
||||
|
||||
PRODUCT_ID = [0x0002, 0x0004]
|
||||
|
@ -205,15 +205,15 @@ def main():
|
||||
if ok:
|
||||
dev = d
|
||||
dev.reset(log_packets=options.log_packets, detected_device=det)
|
||||
connected_devices.append(dev)
|
||||
connected_devices.append((det, dev))
|
||||
|
||||
if dev is None:
|
||||
print >>sys.stderr, 'Unable to find a connected ebook reader.'
|
||||
return 1
|
||||
|
||||
for d in connected_devices:
|
||||
for det, d in connected_devices:
|
||||
try:
|
||||
d.open(None)
|
||||
d.open(det, None)
|
||||
except:
|
||||
continue
|
||||
else:
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user