diff --git a/Changelog.yaml b/Changelog.yaml
index ec41b77d7b..a0c41bac4b 100644
--- a/Changelog.yaml
+++ b/Changelog.yaml
@@ -19,6 +19,97 @@
# new recipes:
# - title:
+- version: 0.8.21
+ date: 2011-09-30
+
+ new features:
+ - title: "A Tips and Tricks blog at http://blog.calibre-ebook.com to introduce less well known calibre features in a simple way"
+
+ - title: "News download: Add list of articles in the downloaded issue to the comments metadata of the generated ebook. Makes it possible to search for a particular article in the calibre library."
+ ticket: [851717]
+
+ - title: "Toolbar buttons: You can now also right click the buttons to bring the popup of extra actions, in addition to clicking the small arrow next to the button."
+
+ - title: "Amazon metadata download plugin: Add option to download metadata from amazon.es"
+
+ - title: Driver for Vizio and iRobot A9 Android tablets
+ tickets: [854408,862175]
+
+ - title: "When switching to/starting with a library with a corrupted database, offer the user the option of rebuilding the database instead of erroring out."
+
+ - title: "Template language: Add list_equals function"
+
+ - title: "Add a special output profile for the PocketBook 900 as it does not resize images correctly by itself"
+
+ bug fixes:
+ - title: "Fix regression that cause PDF Output to generate very large files"
+
+ - title: Fix Title Sort field not being displayed in Book details panel
+
+ - title: Prevent renaming of languages in the Tag browser
+ tickets: [860943]
+
+ - title: "Get books: Fix getting price from Foyles"
+
+ - title: "Content server: When a search matches no queries, do not show an error message"
+
+ - title: "ODT Input: Add workaround for ADE to fix centering of block level images when converting to EPUB"
+ tickets: [859343]
+
+ - title: "Content server: When WSGI embedding fix handling of empty URL"
+
+ - title: "RTF Input: Fix spurious spaces inserted after some unicode characters"
+ tickets: [851215]
+
+ - title: "Fix regression that broke clicking on the first letter of author names in the Tag Browser when grouped"
+ tickets: [860615]
+
+ - title: "Fix reading metadata from filenames when the author regexp does not match anything"
+
+ - title: "Fix incorrect display of the month September in Finnish calibre"
+ tickets: [858737]
+
+ - title: "Do not delete the file when the user tries to add a format to a book from a file already in the books directory"
+ tickets: [856158]
+
+ - title: "Fix regression that broke customization of Kobo device plugin"
+
+ - title: "Allow user defined templates to be used in save to disk"
+
+ improved recipes:
+ - Read It Later
+ - American Spectator
+ - Sydney Morning Herald
+ - Chicago Tribune
+ - American Prospect
+ - DNA India
+ - Times of India
+ - Kurier
+ - xkcd
+ - Cnet
+
+ new recipes:
+ - title: Various Colombian news sources
+ author: BIGO-CAVA
+
+ - title: Gosc Niedzielny
+ author: Piotr Kontek
+
+ - title: Leipzer Volkszeitung
+ author: a.peter
+
+ - title: Folha de Sao Paulo (full edition)
+ author: fluzao
+
+ - title: Den of Geek
+ author: Jaded
+
+ - title: Republica
+ author: Manish Bhattarai
+
+ - title: Sign on San Diego
+ author: Jay Kindle
+
- version: 0.8.20
date: 2011-09-23
diff --git a/recipes/amspec.recipe b/recipes/amspec.recipe
index e5a76a4f86..684b28cf5c 100644
--- a/recipes/amspec.recipe
+++ b/recipes/amspec.recipe
@@ -18,25 +18,16 @@ class TheAmericanSpectator(BasicNewsRecipe):
use_embedded_content = False
language = 'en'
INDEX = 'http://spectator.org'
-
- conversion_options = {
+ auto_cleanup = True
+ encoding = 'utf-8'
+
+ conversion_options = {
'comments' : description
,'tags' : category
,'language' : language
,'publisher' : publisher
}
- keep_only_tags = [
- dict(name='div', attrs={'class':'post inner'})
- ,dict(name='div', attrs={'class':'author-bio'})
- ]
-
- remove_tags = [
- dict(name='object')
- ,dict(name='div', attrs={'class':['col3','post-options','social']})
- ,dict(name='p' , attrs={'class':['letter-editor','meta']})
- ]
-
feeds = [ (u'Articles', u'http://feeds.feedburner.com/amspecarticles')]
def get_cover_url(self):
@@ -48,10 +39,10 @@ class TheAmericanSpectator(BasicNewsRecipe):
link_item2 = soup2.find('div',attrs={'class':'post inner issues'})
cover_url = self.INDEX + link_item2.img['src']
return cover_url
-
+
def print_version(self, url):
return url + '/print'
-
+
def get_article_url(self, article):
return article.get('guid', None)
-
+
diff --git a/recipes/diario_la_republica.recipe b/recipes/diario_la_republica.recipe
new file mode 100644
index 0000000000..1f0e0d565b
--- /dev/null
+++ b/recipes/diario_la_republica.recipe
@@ -0,0 +1,11 @@
+from calibre.web.feeds.news import BasicNewsRecipe
+
+class AdvancedUserRecipe1317341449(BasicNewsRecipe):
+ title = u'Diario La Republica'
+ __author__ = 'CAVALENCIA'
+ oldest_article = 7
+ max_articles_per_feed = 100
+ auto_cleanup = True
+ language = 'es_CO'
+
+ feeds = [(u'Diario La Republica', u'http://www.larepublica.com.co/rss/larepublica.xml')]
diff --git a/recipes/el_colombiano.recipe b/recipes/el_colombiano.recipe
index 492229dc4f..7a413529bb 100644
--- a/recipes/el_colombiano.recipe
+++ b/recipes/el_colombiano.recipe
@@ -2,12 +2,10 @@
from calibre.web.feeds.news import BasicNewsRecipe
-
-
class AdvancedUserRecipe1311790237(BasicNewsRecipe):
title = u'Periódico El Colombiano'
- language = 'es_CO'
__author__ = 'BIGO-CAVA'
+ language = 'es_CO'
cover_url = 'http://www.elcolombiano.com/images/logoElColombiano348x46.gif'
remove_tags_before = dict(id='contenidoArt')
remove_tags_after = dict(id='enviaTips')
diff --git a/recipes/el_espectador.recipe b/recipes/el_espectador.recipe
new file mode 100644
index 0000000000..b7187cbdf3
--- /dev/null
+++ b/recipes/el_espectador.recipe
@@ -0,0 +1,54 @@
+# coding=utf-8
+
+from calibre.web.feeds.news import BasicNewsRecipe
+
+class ColombiaElEspectador(BasicNewsRecipe):
+ title = u'Periódico el Espectador'
+ __author__ = 'BIGO-CAVA'
+ cover_url = 'http://www.elespectador.com/sites/elespectador.com/themes/elespectador/images/logo.gif'
+ #remove_tags_before = dict(id='fb-root')
+ remove_tags_before = dict(id='content')
+ remove_tags_after = [dict(name='div', attrs={'class':'paginacion'})]
+ language = 'es_CO'
+ #keep_only_tags = [dict(name='div', id='content')]
+ remove_tags = [dict(name='div', attrs={'class':'herramientas_nota'}),
+ dict(name='div', attrs={'class':'relpauta'}),
+ dict(name='div', attrs={'class':'recursosrelacionados'}),
+ dict(name='div', attrs={'class':'nav_negocios'})]
+ # dict(name='div', attrs={'class':'tags_playerrecurso'}),
+ # dict(name='div', attrs={'class':'ico-mail2'}),
+ # dict(name='div', attrs={'id':'caja-instapaper'}),
+ # dict(name='div', attrs={'class':'modulo herramientas'})]
+ oldest_article = 2
+ max_articles_per_feed = 100
+ remove_javascript = True
+ no_stylesheets = True
+ use_embedded_content = False
+ remove_empty_feeds = True
+ masthead_url = 'http://www.elespectador.com/sites/elespectador.com/themes/elespectador/images/logo.gif'
+ publication_type = 'newspaper'
+
+ extra_css = """
+ p{text-align: justify; font-size: 100%}
+ body{ text-align: left; font-size:100% }
+ h1{font-family: sans-serif; font-size:150%; font-weight:bold; text-align: justify; }
+ h3{font-family: sans-serif; font-size:100%; font-style: italic; text-align: justify; }
+ """
+
+
+ feeds = [(u'Política ', u' http://www.elespectador.com/noticias/politica/feed'),
+ (u'Judicial', u'http://www.elespectador.com/noticias/judicial/feed'),
+ (u'Paz', u'http://www.elespectador.com/noticias/paz/feed'),
+ (u'Economía', u'http://www.elespectador.com/economia/feed'),
+ (u'Soy Periodista', u'http://www.elespectador.com/noticias/soyperiodista/feed'),
+ (u'Investigación', u'http://www.elespectador.com/noticias/investigacion/feed'),
+ (u'Educación', u'http://www.elespectador.com/noticias/educacion/feed'),
+ (u'Salud', u'http://www.elespectador.com/noticias/salud/feed'),
+ (u'El Mundo', u'http://www.elespectador.com/noticias/elmundo/feed'),
+ (u'Nacional', u'http://www.elespectador.com/noticias/nacional/feed'),
+ (u'Bogotá', u'http://www.elespectador.com/noticias/bogota/feed'),
+ (u'Deportes', u'http://www.elespectador.com/deportes/feed'),
+ (u'Tecnología', u'http://www.elespectador.com/tecnologia/feed'),
+ (u'Actualidad', u'http://www.elespectador.com/noticias/actualidad/feed'),
+ (u'Opinión', u'http://www.elespectador.com/opinion/feed'),
+ (u'Editorial', u'http://www.elespectador.com/opinion/editorial/feed')]
diff --git a/recipes/el_mundo_co.recipe b/recipes/el_mundo_co.recipe
new file mode 100644
index 0000000000..a8186673d5
--- /dev/null
+++ b/recipes/el_mundo_co.recipe
@@ -0,0 +1,50 @@
+
+from calibre.web.feeds.news import BasicNewsRecipe
+
+class ColombiaElMundo02(BasicNewsRecipe):
+ title = u'Periódico El Mundo'
+ __author__ = 'BIGO-CAVA'
+ language = 'es_CO'
+ cover_url = 'http://www.elmundo.com/portal/img/logo_mundo2.png'
+ remove_tags_before = dict(id='miga_pan')
+ #remove_tags_before = [dict(name='div', attrs={'class':'contenido'})]
+ remove_tags_after = [dict(name='div', attrs={'class':'cuadro_opciones_new1'})]
+ #keep_only_tags = [dict(name='div', id='miga_pan')]
+ remove_tags = [dict(name='div', attrs={'class':'ruta'}),
+ dict(name='div', attrs={'class':'buscador'}),
+ dict(name='div', attrs={'class':'iconos'}),
+ dict(name='div', attrs={'class':'otros_iconos'}),
+ dict(name='div', attrs={'class':'cuadro_opciones_new1'}),
+ dict(name='div', attrs={'class':'otras_noticias'}),
+ dict(name='div', attrs={'class':'notas_relacionadas'}),
+ dict(name='div', attrs={'id':'lateral_2'})]
+ oldest_article = 2
+ max_articles_per_feed = 100
+ remove_javascript = True
+ no_stylesheets = True
+ use_embedded_content = False
+ remove_empty_feeds = True
+ masthead_url = 'http://www.elmundo.com/portal/img/logo_mundo2.png'
+ publication_type = 'newspaper'
+
+ extra_css = """
+ p{text-align: justify; font-size: 100%}
+ body{ text-align: left; font-size:100% }
+ h1{font-family: sans-serif; font-size:150%; font-weight:bold; text-align: justify; }
+ h3{font-family: sans-serif; font-size:100%; font-style: italic; text-align: justify; }
+ """
+
+
+ feeds = [(u'Opinión', u'http://www.elmundo.com/images/rss/opinion.xml'),
+ (u'Economía', u'http://www.elmundo.com/images/rss/noticias_economia.xml'),
+ (u'Deportes', u'http://www.elmundo.com/images/rss/deportes.xml'),
+ (u'Política ', u'http://www.elmundo.com/images/rss/noticias_politica.xml'),
+ (u'Antioquia', u'http://www.elmundo.com/images/rss/noticias_antioquia.xml'),
+ (u'Nacional ', u'http://www.elmundo.com/images/rss/noticias_nacional.xml'),
+ (u'Internacional', u'http://www.elmundo.com/images/rss/noticias_internacional.xml'),
+ (u'Servicios Públicos', u'http://www.elmundo.com/images/rss/noticias_servicios_publicos.xml'),
+ (u'Infraestructura', u'http://www.elmundo.com/images/rss/noticias_infraestructura.xml'),
+ (u'Mobilidad', u'http://www.elmundo.com/images/rss/noticias_movilidad.xml'),
+ (u'Derechos Humanos', u'http://www.elmundo.com/images/rss/noticias_derechos_humanos.xml'),
+ (u'Vida', u'http://www.elmundo.com/images/rss/vida.xml'),
+ (u'Cultura', u'http://www.elmundo.com/images/rss/cultura.xml')]
diff --git a/recipes/el_tiempo.recipe b/recipes/el_tiempo.recipe
index 3a10cca767..794e75df7d 100644
--- a/recipes/el_tiempo.recipe
+++ b/recipes/el_tiempo.recipe
@@ -2,18 +2,17 @@
from calibre.web.feeds.news import BasicNewsRecipe
-
-
-
class ColombiaElTiempo02(BasicNewsRecipe):
title = u'Periódico el Tiempo'
- language = 'es_CO'
__author__ = 'BIGO-CAVA'
+ language = 'es_CO'
cover_url = 'http://www.eltiempo.com/media/css/images/logo_footer.png'
- remove_tags_before = dict(id='fb-root')
+ #remove_tags_before = dict(id='fb-root')
+ remove_tags_before = dict(id='contenidoArt')
remove_tags_after = [dict(name='div', attrs={'class':'modulo reporte'})]
keep_only_tags = [dict(name='div', id='contenidoArt')]
remove_tags = [dict(name='div', attrs={'class':'social-media'}),
+ dict(name='div', attrs={'class':'recomend-art'}),
dict(name='div', attrs={'class':'caja-facebook'}),
dict(name='div', attrs={'class':'caja-twitter'}),
dict(name='div', attrs={'class':'caja-buzz'}),
diff --git a/recipes/gosc_niedzielny.recipe b/recipes/gosc_niedzielny.recipe
new file mode 100644
index 0000000000..12942f0f8a
--- /dev/null
+++ b/recipes/gosc_niedzielny.recipe
@@ -0,0 +1,112 @@
+# -*- coding: utf-8 -*-
+#!/usr/bin/env python
+
+__license__ = 'GPL v3'
+__copyright__ = '2011, Piotr Kontek, piotr.kontek@gmail.com'
+
+from calibre.web.feeds.news import BasicNewsRecipe
+from calibre.ptempfile import PersistentTemporaryFile
+import re
+
+class GN(BasicNewsRecipe):
+ EDITION = 0
+
+ __author__ = 'Piotr Kontek'
+ title = u'Gość niedzielny'
+ description = 'Weekly magazine'
+ encoding = 'utf-8'
+ no_stylesheets = True
+ language = 'pl'
+ remove_javascript = True
+ temp_files = []
+
+ articles_are_obfuscated = True
+
+ def get_obfuscated_article(self, url):
+ br = self.get_browser()
+ br.open(url)
+ source = br.response().read()
+ page = self.index_to_soup(source)
+
+ main_section = page.find('div',attrs={'class':'txt doc_prnt_prv'})
+
+ title = main_section.find('h2')
+ info = main_section.find('div', attrs={'class' : 'cf doc_info'})
+ authors = info.find(attrs={'class':'l'})
+ article = str(main_section.find('p', attrs={'class' : 'doc_lead'}))
+ first = True
+ for p in main_section.findAll('p', attrs={'class':None}, recursive=False):
+ if first and p.find('img') != None:
+ article = article + '
'
+ article = article + str(p.find('img')).replace('src="/files/','src="http://www.gosc.pl/files/')
+ article = article + ''
+ for s in p.findAll('span'):
+ article = article + self.tag_to_string(s)
+ article = article + '
'
+ else:
+ article = article + str(p).replace('src="/files/','src="http://www.gosc.pl/files/')
+ first = False
+
+ html = unicode(title) + unicode(authors) + unicode(article)
+
+ self.temp_files.append(PersistentTemporaryFile('_temparse.html'))
+ self.temp_files[-1].write(html)
+ self.temp_files[-1].close()
+ return self.temp_files[-1].name
+
+ def find_last_issue(self):
+ soup = self.index_to_soup('http://gosc.pl/wyszukaj/wydania/3.Gosc-Niedzielny')
+ #szukam zdjęcia i linka do porzedniego pełnego numeru
+ first = True
+ for d in soup.findAll('div', attrs={'class':'l release_preview_l'}):
+ img = d.find('img')
+ if img != None:
+ a = img.parent
+ self.EDITION = a['href']
+ self.title = img['alt']
+ self.cover_url = 'http://www.gosc.pl' + img['src']
+ if not first:
+ break
+ first = False
+
+ def parse_index(self):
+ self.find_last_issue()
+ soup = self.index_to_soup('http://www.gosc.pl' + self.EDITION)
+ feeds = []
+ #wstepniak
+ a = soup.find('div',attrs={'class':'release-wp-b'}).find('a')
+ articles = [
+ {'title' : self.tag_to_string(a),
+ 'url' : 'http://www.gosc.pl' + a['href'].replace('/doc/','/doc_pr/'),
+ 'date' : '',
+ 'description' : ''}
+ ]
+ feeds.append((u'Wstępniak',articles))
+ #kategorie
+ for addr in soup.findAll('a',attrs={'href':re.compile('kategoria')}):
+ if addr.string != u'wszystkie artyku\u0142y z tej kategorii \xbb':
+ main_block = self.index_to_soup('http://www.gosc.pl' + addr['href'])
+ articles = list(self.find_articles(main_block))
+ if len(articles) > 0:
+ section = addr.string
+ feeds.append((section, articles))
+ return feeds
+
+ def find_articles(self, main_block):
+ for a in main_block.findAll('div', attrs={'class':'prev_doc2'}):
+ art = a.find('a')
+ yield {
+ 'title' : self.tag_to_string(art),
+ 'url' : 'http://www.gosc.pl' + art['href'].replace('/doc/','/doc_pr/'),
+ 'date' : '',
+ 'description' : ''
+ }
+ for a in main_block.findAll('div', attrs={'class':'sr-document'}):
+ art = a.find('a')
+ yield {
+ 'title' : self.tag_to_string(art),
+ 'url' : 'http://www.gosc.pl' + art['href'].replace('/doc/','/doc_pr/'),
+ 'date' : '',
+ 'description' : ''
+ }
+
diff --git a/recipes/portafolio.recipe b/recipes/portafolio.recipe
index 1b442f68f7..4ba0d16c46 100644
--- a/recipes/portafolio.recipe
+++ b/recipes/portafolio.recipe
@@ -4,13 +4,13 @@ from calibre.web.feeds.news import BasicNewsRecipe
class AdvancedUserRecipe1311799898(BasicNewsRecipe):
title = u'Periódico Portafolio Colombia'
- language = 'es_CO'
__author__ = 'BIGO-CAVA'
+ language = 'es_CO'
cover_url = 'http://www.portafolio.co/sites/portafolio.co/themes/portafolio_2011/logo.png'
remove_tags_before = dict(id='contenidoArt')
remove_tags_after = [dict(name='div', attrs={'class':'articulo-mas'})]
keep_only_tags = [dict(name='div', id='contenidoArt')]
- oldest_article = 1
+ oldest_article = 2
max_articles_per_feed = 100
remove_javascript = True
no_stylesheets = True
diff --git a/recipes/readitlater.recipe b/recipes/readitlater.recipe
index 4bd8fc2bd6..ea9c92868b 100644
--- a/recipes/readitlater.recipe
+++ b/recipes/readitlater.recipe
@@ -1,5 +1,8 @@
__license__ = 'GPL v3'
-__copyright__ = '2010, Darko Miletic '
+__copyright__ = '''
+2010, Darko Miletic
+2011, Przemyslaw Kryger
+'''
'''
readitlaterlist.com
'''
@@ -9,7 +12,7 @@ from calibre.web.feeds.news import BasicNewsRecipe
class Readitlater(BasicNewsRecipe):
title = 'Read It Later'
- __author__ = 'Darko Miletic'
+ __author__ = 'Darko Miletic, Przemyslaw Kryger'
description = '''Personalized news feeds. Go to readitlaterlist.com to
setup up your news. Fill in your account
username, and optionally you can add password.'''
@@ -23,9 +26,6 @@ class Readitlater(BasicNewsRecipe):
INDEX = u'http://readitlaterlist.com'
LOGIN = INDEX + u'/l'
-
- feeds = [(u'Unread articles' , INDEX + u'/unread')]
-
def get_browser(self):
br = BasicNewsRecipe.get_browser()
if self.username is not None:
@@ -37,12 +37,31 @@ class Readitlater(BasicNewsRecipe):
br.submit()
return br
+ def get_feeds(self):
+ self.report_progress(0, ('Fetching list of feeds...'))
+ lfeeds = []
+ i = 1
+ feedurl = self.INDEX + u'/unread/1'
+ while True:
+ title = u'Unread articles, page ' + str(i)
+ lfeeds.append((title, feedurl))
+ self.report_progress(0, ('Got ') + str(i) + (' feeds'))
+ i += 1
+ soup = self.index_to_soup(feedurl)
+ ritem = soup.find('a',attrs={'id':'next', 'class':'active'})
+ if ritem is None:
+ break
+ feedurl = self.INDEX + ritem['href']
+ if self.test:
+ return lfeeds[:2]
+ return lfeeds
+
def parse_index(self):
totalfeeds = []
lfeeds = self.get_feeds()
for feedobj in lfeeds:
feedtitle, feedurl = feedobj
- self.report_progress(0, _('Fetching feed')+' %s...'%(feedtitle if feedtitle else feedurl))
+ self.report_progress(0, ('Fetching feed')+' %s...'%(feedtitle if feedtitle else feedurl))
articles = []
soup = self.index_to_soup(feedurl)
ritem = soup.find('ul',attrs={'id':'list'})
diff --git a/recipes/revista_semana.recipe b/recipes/revista_semana.recipe
new file mode 100644
index 0000000000..1137764932
--- /dev/null
+++ b/recipes/revista_semana.recipe
@@ -0,0 +1,11 @@
+from calibre.web.feeds.news import BasicNewsRecipe
+
+
+class AdvancedUserRecipe1317341570(BasicNewsRecipe):
+ title = u'Revista Semana'
+ __author__ = 'BIGO-CAVA'
+ language = 'es_CO'
+ oldest_article = 7
+ max_articles_per_feed = 100
+
+ feeds = [(u'Revista Semana', u'http://www.semana.com/rss/Semana_OnLine.xml')]
diff --git a/recipes/smh.recipe b/recipes/smh.recipe
index 220cd7faf3..e59e9f21d4 100644
--- a/recipes/smh.recipe
+++ b/recipes/smh.recipe
@@ -22,10 +22,10 @@ class Smh_au(BasicNewsRecipe):
remove_empty_feeds = True
masthead_url = 'http://images.smh.com.au/2010/02/02/1087188/smh-620.jpg'
publication_type = 'newspaper'
- extra_css = """
- h1{font-family: Georgia,"Times New Roman",Times,serif }
- body{font-family: Arial,Helvetica,sans-serif}
- .cT-imageLandscape,.cT-imagePortrait{font-size: x-small}
+ extra_css = """
+ h1{font-family: Georgia,"Times New Roman",Times,serif }
+ body{font-family: Arial,Helvetica,sans-serif}
+ .cT-imageLandscape,.cT-imagePortrait{font-size: x-small}
"""
conversion_options = {
@@ -35,16 +35,16 @@ class Smh_au(BasicNewsRecipe):
, 'language' : language
}
- remove_tags = [
- dict(name='div', attrs={'id':['googleAds','moreGoogleAds','comments']})
- ,dict(name='div', attrs={'class':'cT-imageMultimedia'})
- ,dict(name=['object','embed','iframe'])
- ]
remove_tags_after = [dict(name='div',attrs={'class':'articleBody'})]
keep_only_tags = [dict(name='div',attrs={'id':'content'})]
- remove_tags = [
- dict(attrs={'class':'hidden'}),
- dict(name=['link','meta','base','embed','object','iframe'])
+ remove_tags = [
+ dict(name='div',
+ attrs={'id':['googleAds','moreGoogleAds','comments',
+ 'video-player-content']}),
+ dict(name='div', attrs={'class':'cT-imageMultimedia'}),
+ dict(name=['object','embed','iframe']),
+ dict(attrs={'class':'hidden'}),
+ dict(name=['link','meta','base','embed','object','iframe'])
]
remove_attributes = ['width','height','lang']
@@ -84,4 +84,4 @@ class Smh_au(BasicNewsRecipe):
if not item.has_key('alt'):
item['alt'] = 'image'
return soup
-
\ No newline at end of file
+
diff --git a/session.vim b/session.vim
index 6252c038db..b85e21ce8c 100644
--- a/session.vim
+++ b/session.vim
@@ -27,4 +27,4 @@ vipy.session.add_content_browser('.r', ',r', 'Recipe',
vipy.session.regexp_based_matcher(r'title\s*=\s*(?P.+)', 'title', recipe_title_callback))
EOFPY
-nmap \log :enew:read ! bzr log -l 500 ../.. :e ../../Changelog.yaml:e constants.py
+nmap \log :enew:read ! bzr log -l 500 :e Changelog.yaml:e src/calibre/constants.py
diff --git a/setup/build_environment.py b/setup/build_environment.py
index f0adaf9584..d4a7af833b 100644
--- a/setup/build_environment.py
+++ b/setup/build_environment.py
@@ -177,6 +177,7 @@ fc_error = None if os.path.exists(os.path.join(fc_inc, 'fontconfig.h')) else \
poppler_error = None
+poppler_cflags = ['-DPNG_SKIP_SETJMP_CHECK'] if islinux else []
if not poppler_inc_dirs or not os.path.exists(
os.path.join(poppler_inc_dirs[0], 'OutputDev.h')):
poppler_error = \
@@ -186,6 +187,10 @@ if not poppler_inc_dirs or not os.path.exists(
' the poppler XPDF headers. If your distro does not '
' include them you will have to re-compile poppler '
' by hand with --enable-xpdf-headers')
+else:
+ lh = os.path.join(poppler_inc_dirs[0], 'Link.h')
+ if 'class AnnotLink' not in open(lh, 'rb').read():
+ poppler_cflags.append('-DPOPPLER_OLD_LINK_TYPE')
magick_error = None
if not magick_inc_dirs or not os.path.exists(os.path.join(magick_inc_dirs[0],
diff --git a/setup/extensions.py b/setup/extensions.py
index 678859432d..87d05c492d 100644
--- a/setup/extensions.py
+++ b/setup/extensions.py
@@ -11,15 +11,15 @@ from distutils import sysconfig
from PyQt4.pyqtconfig import QtGuiModuleMakefile
-from setup import Command, islinux, isfreebsd, isbsd, isosx, SRC, iswindows
-from setup.build_environment import fc_inc, fc_lib, chmlib_inc_dirs, \
- fc_error, poppler_libs, poppler_lib_dirs, poppler_inc_dirs, podofo_inc, \
- podofo_lib, podofo_error, poppler_error, pyqt, OSX_SDK, NMAKE, \
- QMAKE, msvc, MT, win_inc, win_lib, png_inc_dirs, win_ddk, \
- magick_inc_dirs, magick_lib_dirs, png_lib_dirs, png_libs, \
- magick_error, magick_libs, ft_lib_dirs, ft_libs, jpg_libs, \
- jpg_lib_dirs, chmlib_lib_dirs, sqlite_inc_dirs, icu_inc_dirs, \
- icu_lib_dirs
+from setup import Command, islinux, isbsd, isosx, SRC, iswindows
+from setup.build_environment import (fc_inc, fc_lib, chmlib_inc_dirs,
+ fc_error, poppler_libs, poppler_lib_dirs, poppler_inc_dirs, podofo_inc,
+ podofo_lib, podofo_error, poppler_error, pyqt, OSX_SDK, NMAKE,
+ QMAKE, msvc, MT, win_inc, win_lib, png_inc_dirs, win_ddk,
+ magick_inc_dirs, magick_lib_dirs, png_lib_dirs, png_libs,
+ magick_error, magick_libs, ft_lib_dirs, ft_libs, jpg_libs,
+ jpg_lib_dirs, chmlib_lib_dirs, sqlite_inc_dirs, icu_inc_dirs,
+ icu_lib_dirs, poppler_cflags)
MT
isunix = islinux or isosx or isbsd
@@ -114,7 +114,7 @@ extensions = [
lib_dirs=poppler_lib_dirs+magick_lib_dirs+png_lib_dirs+ft_lib_dirs+jpg_lib_dirs,
inc_dirs=poppler_inc_dirs+magick_inc_dirs+png_inc_dirs,
error=reflow_error,
- cflags=['-DPNG_SKIP_SETJMP_CHECK'] if islinux else []
+ cflags=poppler_cflags
),
Extension('lzx',
diff --git a/setup/iso_639/af.po b/setup/iso_639/af.po
index 114fbd944c..1b06442c55 100644
--- a/setup/iso_639/af.po
+++ b/setup/iso_639/af.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 05:54+0000\n"
"Last-Translator: Ysbeer \n"
"Language-Team: Afrikaans \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-03 04:52+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:35+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: af\n"
#. name for aaa
diff --git a/setup/iso_639/am.po b/setup/iso_639/am.po
index dd7e39893e..a884ccb9c6 100644
--- a/setup/iso_639/am.po
+++ b/setup/iso_639/am.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:15+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:14+0000\n"
+"Last-Translator: Kovid Goyal \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-03 04:53+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:36+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/ar.po b/setup/iso_639/ar.po
index 5be3e920db..f5bc78d171 100644
--- a/setup/iso_639/ar.po
+++ b/setup/iso_639/ar.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 05:57+0000\n"
"Last-Translator: Mohammad Gamal \n"
"Language-Team: Arabic \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-03 04:54+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:36+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: ar\n"
#. name for aaa
diff --git a/setup/iso_639/az.po b/setup/iso_639/az.po
index 67d6d35953..14e73de9d4 100644
--- a/setup/iso_639/az.po
+++ b/setup/iso_639/az.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 05:38+0000\n"
"Last-Translator: Vasif İsmayıloğlu MD \n"
"Language-Team: Azerbaijani Turkish \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-03 04:54+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:37+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/bg.po b/setup/iso_639/bg.po
index 79511a8502..dea59ab657 100644
--- a/setup/iso_639/bg.po
+++ b/setup/iso_639/bg.po
@@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:12+0000\n"
-"Last-Translator: Roumen Petrov \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:26+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Bulgarian \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-03 04:56+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:39+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: bg\n"
#. name for aaa
diff --git a/setup/iso_639/bn_IN.po b/setup/iso_639/bn_IN.po
index 1c1cdafc6d..4ed19cfe44 100644
--- a/setup/iso_639/bn_IN.po
+++ b/setup/iso_639/bn_IN.po
@@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 08:33+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:18+0000\n"
"Last-Translator: runa \n"
"Language-Team: Bengali (India) \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-03 05:33+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:17+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/br.po b/setup/iso_639/br.po
index effc7a54eb..e1549144d8 100644
--- a/setup/iso_639/br.po
+++ b/setup/iso_639/br.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 07:57+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:43+0000\n"
"Last-Translator: Kovid Goyal \n"
"Language-Team: Breton \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-03 04:56+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:38+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: br\n"
#. name for aaa
diff --git a/setup/iso_639/bs.po b/setup/iso_639/bs.po
index 98a2a9538d..558891b111 100644
--- a/setup/iso_639/bs.po
+++ b/setup/iso_639/bs.po
@@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 07:15+0000\n"
"Last-Translator: Nesiren Armin \n"
"Language-Team: Bosanski \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-03 04:55+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:38+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/byn.po b/setup/iso_639/byn.po
index 446f047997..d34537c422 100644
--- a/setup/iso_639/byn.po
+++ b/setup/iso_639/byn.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 05:42+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:37+0000\n"
+"Last-Translator: Kovid Goyal \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-03 04:57+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:40+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/crh.po b/setup/iso_639/crh.po
index 81145bc10d..6ffd2708c5 100644
--- a/setup/iso_639/crh.po
+++ b/setup/iso_639/crh.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:17+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:24+0000\n"
"Last-Translator: Reşat SABIQ \n"
"Language-Team: Crimean Tatar \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-03 04:58+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:41+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: crh\n"
#. name for aaa
diff --git a/setup/iso_639/cs.po b/setup/iso_639/cs.po
index 69680e13ff..fa6eb9f4c4 100644
--- a/setup/iso_639/cs.po
+++ b/setup/iso_639/cs.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 05:48+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:51+0000\n"
"Last-Translator: Miroslav Kure \n"
"Language-Team: Czech \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-03 04:58+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:41+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: cs\n"
#. name for aaa
diff --git a/setup/iso_639/cy.po b/setup/iso_639/cy.po
index 404794dc4f..4d0d6ab67f 100644
--- a/setup/iso_639/cy.po
+++ b/setup/iso_639/cy.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 07:08+0000\n"
"Last-Translator: Dafydd Tomos \n"
"Language-Team: Welsh \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-03 05:31+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:14+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: cy\n"
#. name for aaa
diff --git a/setup/iso_639/da.po b/setup/iso_639/da.po
index 255a403f1f..8a1f9d1f36 100644
--- a/setup/iso_639/da.po
+++ b/setup/iso_639/da.po
@@ -16,15 +16,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 09:06+0000\n"
-"Last-Translator: Claus Hindsgaul \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:12+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Danish \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-03 04:59+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:42+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: da\n"
#. name for aaa
diff --git a/setup/iso_639/de.po b/setup/iso_639/de.po
index 11d2dfeecb..cef31eafc4 100644
--- a/setup/iso_639/de.po
+++ b/setup/iso_639/de.po
@@ -17,15 +17,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-09-13 16:28+0000\n"
-"Last-Translator: frenkx \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:28+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: German \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-14 04:40+0000\n"
-"X-Generator: Launchpad (build 13921)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:45+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: de\n"
#. name for aaa
diff --git a/setup/iso_639/el.po b/setup/iso_639/el.po
index 9d52ba8632..adcb3d0c1a 100644
--- a/setup/iso_639/el.po
+++ b/setup/iso_639/el.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:47+0000\n"
-"Last-Translator: Thanos Lefteris \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:41+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Greek \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-03 05:05+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:48+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: el\n"
#. name for aaa
diff --git a/setup/iso_639/eo.po b/setup/iso_639/eo.po
index 89673adf6c..7ca4e60e47 100644
--- a/setup/iso_639/eo.po
+++ b/setup/iso_639/eo.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 08:01+0000\n"
-"Last-Translator: Edmund GRIMLEY EVANS \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:58+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Esperanto \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-03 05:00+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:43+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: eo\n"
#. name for aaa
diff --git a/setup/iso_639/et.po b/setup/iso_639/et.po
index 883536dbae..4f824e3e7c 100644
--- a/setup/iso_639/et.po
+++ b/setup/iso_639/et.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 07:11+0000\n"
"Last-Translator: Tõivo Leedjärv \n"
"Language-Team: Estonian \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-03 05:00+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:43+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: et\n"
#. name for aaa
diff --git a/setup/iso_639/eu.po b/setup/iso_639/eu.po
index dd2b82826c..3dca3bfb04 100644
--- a/setup/iso_639/eu.po
+++ b/setup/iso_639/eu.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 08:03+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 15:37+0000\n"
"Last-Translator: Piarres Beobide \n"
"Language-Team: Euskara \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-03 04:55+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:37+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: eu\n"
#. name for aaa
diff --git a/setup/iso_639/fa.po b/setup/iso_639/fa.po
index 8889116d90..09d7323d96 100644
--- a/setup/iso_639/fa.po
+++ b/setup/iso_639/fa.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:07+0000\n"
-"Last-Translator: Roozbeh Pournader \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:19+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Persian \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-03 05:19+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:02+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: fa\n"
#. name for aaa
diff --git a/setup/iso_639/fi.po b/setup/iso_639/fi.po
index e77eaecc3e..02c9e2e89b 100644
--- a/setup/iso_639/fi.po
+++ b/setup/iso_639/fi.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 07:53+0000\n"
-"Last-Translator: Tommi Vainikainen \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:07+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Finnish \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-03 05:01+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:44+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: fi\n"
#. name for aaa
diff --git a/setup/iso_639/fr.po b/setup/iso_639/fr.po
index 88ca903e17..5de23d1bfb 100644
--- a/setup/iso_639/fr.po
+++ b/setup/iso_639/fr.po
@@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:31+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:36+0000\n"
"Last-Translator: Christian Perrier \n"
"Language-Team: French \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-03 05:02+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:45+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: fr\n"
#. name for aaa
diff --git a/setup/iso_639/ga.po b/setup/iso_639/ga.po
index fd075f4fc5..25bb81554a 100644
--- a/setup/iso_639/ga.po
+++ b/setup/iso_639/ga.po
@@ -14,15 +14,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 08:59+0000\n"
-"Last-Translator: Kevin Patrick Scannell \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 15:51+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Irish \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-03 05:04+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:46+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: ga\n"
#. name for aaa
diff --git a/setup/iso_639/gez.po b/setup/iso_639/gez.po
index ed35beba6d..3faf427cc4 100644
--- a/setup/iso_639/gez.po
+++ b/setup/iso_639/gez.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:19+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:12+0000\n"
+"Last-Translator: Kovid Goyal \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-03 05:03+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:46+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/gl.po b/setup/iso_639/gl.po
index 8459e4096d..81fdceb5a4 100644
--- a/setup/iso_639/gl.po
+++ b/setup/iso_639/gl.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 07:22+0000\n"
-"Last-Translator: Fran Diéguez \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:34+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Galician \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-03 05:04+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:47+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: gl\n"
#. name for aaa
diff --git a/setup/iso_639/gu.po b/setup/iso_639/gu.po
index 4c6add5eeb..1263ff4873 100644
--- a/setup/iso_639/gu.po
+++ b/setup/iso_639/gu.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:48+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:46+0000\n"
"Last-Translator: Ankit Patel \n"
"Language-Team: Gujarati \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-03 05:05+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:48+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: gu\n"
#. name for aaa
diff --git a/setup/iso_639/he.po b/setup/iso_639/he.po
index c4418ceb48..97a8e581ea 100644
--- a/setup/iso_639/he.po
+++ b/setup/iso_639/he.po
@@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 06:12+0000\n"
"Last-Translator: Alastair McKinstry \n"
"Language-Team: Hebrew \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-03 05:06+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:49+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: he\n"
#. name for aaa
diff --git a/setup/iso_639/hi.po b/setup/iso_639/hi.po
index 16a9045ca5..931e2402ee 100644
--- a/setup/iso_639/hi.po
+++ b/setup/iso_639/hi.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:37+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:03+0000\n"
+"Last-Translator: Kovid Goyal \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-03 05:06+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:49+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/hr.po b/setup/iso_639/hr.po
index 2419357272..b948823dfa 100644
--- a/setup/iso_639/hr.po
+++ b/setup/iso_639/hr.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 06:17+0000\n"
"Last-Translator: Alastair McKinstry \n"
"Language-Team: Croatian \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-03 05:23+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:06+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: hr\n"
#. name for aaa
diff --git a/setup/iso_639/hu.po b/setup/iso_639/hu.po
index 761fd61db7..76d2afce46 100644
--- a/setup/iso_639/hu.po
+++ b/setup/iso_639/hu.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 08:42+0000\n"
-"Last-Translator: SZERVÑC Attila \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:23+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Hungarian \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-03 05:07+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:50+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"X-Poedit-Country: HUNGARY\n"
"Language: hu\n"
"X-Poedit-Language: Hungarian\n"
diff --git a/setup/iso_639/id.po b/setup/iso_639/id.po
index db3bffd540..3263966bd0 100644
--- a/setup/iso_639/id.po
+++ b/setup/iso_639/id.po
@@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 05:34+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:05+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Indonesia \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-03 05:08+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:51+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/is.po b/setup/iso_639/is.po
index 2cbdca867d..faf7d30079 100644
--- a/setup/iso_639/is.po
+++ b/setup/iso_639/is.po
@@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 09:09+0000\n"
"Last-Translator: Alastair McKinstry \n"
"Language-Team: Icelandic \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-03 05:07+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:50+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: is\n"
#. name for aaa
diff --git a/setup/iso_639/it.po b/setup/iso_639/it.po
index 4008c6de57..fc795c4ff6 100644
--- a/setup/iso_639/it.po
+++ b/setup/iso_639/it.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:52+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:49+0000\n"
"Last-Translator: Milo Casagrande \n"
"Language-Team: Italian \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-03 05:08+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:51+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: it\n"
#. name for aaa
diff --git a/setup/iso_639/ja.po b/setup/iso_639/ja.po
index eb768bebd3..fe3b76fb82 100644
--- a/setup/iso_639/ja.po
+++ b/setup/iso_639/ja.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:06+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 15:44+0000\n"
"Last-Translator: IIDA Yosiaki \n"
"Language-Team: Japanese \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-03 05:09+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:52+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: ja\n"
#. name for aaa
diff --git a/setup/iso_639/kn.po b/setup/iso_639/kn.po
index 0e5fac2372..b688c8ea8c 100644
--- a/setup/iso_639/kn.po
+++ b/setup/iso_639/kn.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:27+0000\n"
-"Last-Translator: shankar Prasad \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 15:57+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Kannada \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-03 05:10+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:52+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: kn\n"
#. name for aaa
diff --git a/setup/iso_639/ko.po b/setup/iso_639/ko.po
index f308e0ebe6..c7be21bafe 100644
--- a/setup/iso_639/ko.po
+++ b/setup/iso_639/ko.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 04:09+0000\n"
"Last-Translator: Eungkyu Song \n"
"Language-Team: Korean \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-03 05:11+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:54+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: ko\n"
#. name for aaa
diff --git a/setup/iso_639/kok.po b/setup/iso_639/kok.po
index 4179878e87..66a3160e2b 100644
--- a/setup/iso_639/kok.po
+++ b/setup/iso_639/kok.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 08:49+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:38+0000\n"
+"Last-Translator: Kovid Goyal \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-03 05:11+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:53+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/lt.po b/setup/iso_639/lt.po
index 80e25433bf..ce019bf8cf 100644
--- a/setup/iso_639/lt.po
+++ b/setup/iso_639/lt.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 05:30+0000\n"
-"Last-Translator: Kęstutis Biliūnas \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:08+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Lithuanian \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-03 05:12+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:55+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: lt\n"
#. name for aaa
diff --git a/setup/iso_639/lv.po b/setup/iso_639/lv.po
index d976e4aa19..fa5e3e116d 100644
--- a/setup/iso_639/lv.po
+++ b/setup/iso_639/lv.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 09:02+0000\n"
"Last-Translator: Alastair McKinstry \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-03 05:12+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:55+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/mi.po b/setup/iso_639/mi.po
index 825c667faa..7e48143acb 100644
--- a/setup/iso_639/mi.po
+++ b/setup/iso_639/mi.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 03:56+0000\n"
"Last-Translator: James Gasson \n"
"Language-Team: Maori \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-03 05:13+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:56+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: mi\n"
#. name for aaa
diff --git a/setup/iso_639/mk.po b/setup/iso_639/mk.po
index df7e41c6b2..db1869bdc3 100644
--- a/setup/iso_639/mk.po
+++ b/setup/iso_639/mk.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 03:58+0000\n"
"Last-Translator: Alastair McKinstry \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-03 05:13+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:56+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/mn.po b/setup/iso_639/mn.po
index 3dff88d493..cf4bc4d483 100644
--- a/setup/iso_639/mn.po
+++ b/setup/iso_639/mn.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:28+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:18+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Mongolian \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-03 05:15+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:58+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: mn\n"
#. name for aaa
diff --git a/setup/iso_639/mr.po b/setup/iso_639/mr.po
index 2121944a44..89cede72a8 100644
--- a/setup/iso_639/mr.po
+++ b/setup/iso_639/mr.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:51+0000\n"
-"Last-Translator: Sandeep Shedmake \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:21+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Marathi \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-03 05:14+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:57+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: mr\n"
#. name for aaa
diff --git a/setup/iso_639/ms.po b/setup/iso_639/ms.po
index 1216079981..2874688092 100644
--- a/setup/iso_639/ms.po
+++ b/setup/iso_639/ms.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 06:24+0000\n"
"Last-Translator: Hasbullah Bin Pit \n"
"Language-Team: Projek Gabai \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-03 05:14+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:57+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/mt.po b/setup/iso_639/mt.po
index 4224e95579..7e543f4a40 100644
--- a/setup/iso_639/mt.po
+++ b/setup/iso_639/mt.po
@@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:00+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:49+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Maltese \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-03 05:15+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:58+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: mt\n"
#. name for aaa
diff --git a/setup/iso_639/nb.po b/setup/iso_639/nb.po
index 5c98e48c9e..35f376b5c5 100644
--- a/setup/iso_639/nb.po
+++ b/setup/iso_639/nb.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:54+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:46+0000\n"
+"Last-Translator: Kovid Goyal \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-03 05:17+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:59+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/nl.po b/setup/iso_639/nl.po
index 8ae4d19928..32d8fc97fc 100644
--- a/setup/iso_639/nl.po
+++ b/setup/iso_639/nl.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-09-15 11:31+0000\n"
-"Last-Translator: drMerry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:17+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Dutch \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-16 04:35+0000\n"
-"X-Generator: Launchpad (build 13955)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:42+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: nl\n"
#. name for aaa
diff --git a/setup/iso_639/nn.po b/setup/iso_639/nn.po
index 53acfac86c..e28ba2da74 100644
--- a/setup/iso_639/nn.po
+++ b/setup/iso_639/nn.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:51+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:45+0000\n"
"Last-Translator: Karl Ove Hufthammer \n"
"Language-Team: Norwegian Nynorsk \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-03 05:16+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:59+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: nn\n"
#. name for aaa
diff --git a/setup/iso_639/nso.po b/setup/iso_639/nso.po
index b50d0b6efd..6d63dcdd71 100644
--- a/setup/iso_639/nso.po
+++ b/setup/iso_639/nso.po
@@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 05:46+0000\n"
"Last-Translator: Jerry Thobejane \n"
"Language-Team: Northern Sotho \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-03 05:17+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:00+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: nso\n"
#. name for aaa
diff --git a/setup/iso_639/oc.po b/setup/iso_639/oc.po
index 4a91670a6e..1172d3c75e 100644
--- a/setup/iso_639/oc.po
+++ b/setup/iso_639/oc.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:03+0000\n"
-"Last-Translator: Joan Luc Labòrda \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:43+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: OCCITAN \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-03 05:18+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:01+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/or.po b/setup/iso_639/or.po
index 6f9ad5e364..f1b7c8893c 100644
--- a/setup/iso_639/or.po
+++ b/setup/iso_639/or.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:32+0000\n"
-"Last-Translator: Manoj Kumar Giri \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:01+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Oriya \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-03 05:18+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:01+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: or\n"
#. name for aaa
diff --git a/setup/iso_639/pa.po b/setup/iso_639/pa.po
index 1703988414..51dc8bc32a 100644
--- a/setup/iso_639/pa.po
+++ b/setup/iso_639/pa.po
@@ -13,15 +13,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:14+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:54+0000\n"
"Last-Translator: A S Alam \n"
"Language-Team: Punjabi \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-03 05:19+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:02+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: pa\n"
#. name for aaa
diff --git a/setup/iso_639/pl.po b/setup/iso_639/pl.po
index df86b3d5f2..46e18f7160 100644
--- a/setup/iso_639/pl.po
+++ b/setup/iso_639/pl.po
@@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:49+0000\n"
-"Last-Translator: Jakub Bogusz \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:01+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Polish \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-03 05:20+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:03+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: pl\n"
#. name for aaa
diff --git a/setup/iso_639/ps.po b/setup/iso_639/ps.po
index 510a168d59..a955c9e92d 100644
--- a/setup/iso_639/ps.po
+++ b/setup/iso_639/ps.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 05:58+0000\n"
"Last-Translator: Alastair McKinstry \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-03 05:21+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:04+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/pt.po b/setup/iso_639/pt.po
index db7c832018..f63782d294 100644
--- a/setup/iso_639/pt.po
+++ b/setup/iso_639/pt.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 07:19+0000\n"
-"Last-Translator: Filipe Maia \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:52+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: 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-03 05:20+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:04+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: pt\n"
#. name for aaa
diff --git a/setup/iso_639/pt_BR.po b/setup/iso_639/pt_BR.po
index 24151eeb23..a319fcc526 100644
--- a/setup/iso_639/pt_BR.po
+++ b/setup/iso_639/pt_BR.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:13+0000\n"
-"Last-Translator: Juan Carlos Castro y Castro \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:27+0000\n"
+"Last-Translator: Kovid Goyal \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-03 05:34+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:17+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/ro.po b/setup/iso_639/ro.po
index aa9ced06eb..371b9f3135 100644
--- a/setup/iso_639/ro.po
+++ b/setup/iso_639/ro.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 05:33+0000\n"
"Last-Translator: Alastair McKinstry \n"
"Language-Team: Romanian \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-03 05:21+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:05+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: ro\n"
"PO-Creation-Date: 2000-09-24 15:45+0300\n"
diff --git a/setup/iso_639/ru.po b/setup/iso_639/ru.po
index fd848ddbaf..7c33259a7b 100644
--- a/setup/iso_639/ru.po
+++ b/setup/iso_639/ru.po
@@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:08+0000\n"
-"Last-Translator: Yuri Kozlov \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:14+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Russian \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-03 05:22+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:05+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: ru\n"
#. name for aaa
diff --git a/setup/iso_639/rw.po b/setup/iso_639/rw.po
index 26effcbd8c..58308071fc 100644
--- a/setup/iso_639/rw.po
+++ b/setup/iso_639/rw.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 05:43+0000\n"
-"Last-Translator: Steve Murphy \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:15+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Kinyarwanda \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-03 05:10+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 04:53+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: rw\n"
#. name for aaa
diff --git a/setup/iso_639/sk.po b/setup/iso_639/sk.po
index 3a89e53072..2d4f25172a 100644
--- a/setup/iso_639/sk.po
+++ b/setup/iso_639/sk.po
@@ -10,15 +10,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 05:52+0000\n"
"Last-Translator: Alastair McKinstry \n"
"Language-Team: Slovak \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-03 05:24+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:07+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: sk\n"
#. name for aaa
diff --git a/setup/iso_639/sl.po b/setup/iso_639/sl.po
index 9b3bb17d80..a6ebce9c3e 100644
--- a/setup/iso_639/sl.po
+++ b/setup/iso_639/sl.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:04+0000\n"
-"Last-Translator: Primoz Peterlin \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 15:39+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Slovenian \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-03 05:24+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:08+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: sl\n"
#. name for aaa
diff --git a/setup/iso_639/sr.po b/setup/iso_639/sr.po
index b4a076b6ff..ce8dd67514 100644
--- a/setup/iso_639/sr.po
+++ b/setup/iso_639/sr.po
@@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 05:37+0000\n"
-"Last-Translator: Данило Шеган \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 15:42+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Serbian \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-03 05:23+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:06+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: sr\n"
#. name for aaa
diff --git a/setup/iso_639/sr@latin.po b/setup/iso_639/sr@latin.po
index 8a46b71d29..6db7178192 100644
--- a/setup/iso_639/sr@latin.po
+++ b/setup/iso_639/sr@latin.po
@@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 07:12+0000\n"
-"Last-Translator: Данило Шеган \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:43+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Serbian \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-03 05:35+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:19+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: sr\n"
#. name for aaa
diff --git a/setup/iso_639/sv.po b/setup/iso_639/sv.po
index c46308f6a8..c369c939fb 100644
--- a/setup/iso_639/sv.po
+++ b/setup/iso_639/sv.po
@@ -29,15 +29,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 08:54+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:53+0000\n"
"Last-Translator: Christian Rose \n"
"Language-Team: Swedish \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-03 05:25+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:09+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: sv\n"
#. name for aaa
diff --git a/setup/iso_639/ta.po b/setup/iso_639/ta.po
index 649df52245..1061cbccab 100644
--- a/setup/iso_639/ta.po
+++ b/setup/iso_639/ta.po
@@ -12,15 +12,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 08:05+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:31+0000\n"
"Last-Translator: Felix \n"
"Language-Team: Tamil \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-03 05:26+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:09+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"X-Poedit-Country: INDIA\n"
"Language: ta\n"
"X-Poedit-Language: Tamil\n"
diff --git a/setup/iso_639/th.po b/setup/iso_639/th.po
index 5ad463dd80..b3b18028a6 100644
--- a/setup/iso_639/th.po
+++ b/setup/iso_639/th.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:45+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:26+0000\n"
"Last-Translator: Theppitak Karoonboonyanan \n"
"Language-Team: Thai \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-03 05:27+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:10+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: th\n"
#. name for aaa
diff --git a/setup/iso_639/ti.po b/setup/iso_639/ti.po
index 476790d789..d04a3ab47a 100644
--- a/setup/iso_639/ti.po
+++ b/setup/iso_639/ti.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 04:27+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:09+0000\n"
+"Last-Translator: Kovid Goyal \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-03 05:28+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:12+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/tig.po b/setup/iso_639/tig.po
index c7590c9e96..ca5771d2d5 100644
--- a/setup/iso_639/tig.po
+++ b/setup/iso_639/tig.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:46+0000\n"
-"Last-Translator: Alastair McKinstry \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:04+0000\n"
+"Last-Translator: Kovid Goyal \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-03 05:27+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:11+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/tr.po b/setup/iso_639/tr.po
index b899ff9684..192782a2c8 100644
--- a/setup/iso_639/tr.po
+++ b/setup/iso_639/tr.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-09-01 09:30+0000\n"
-"Last-Translator: zeugma \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 18:36+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Turkish \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-03 05:28+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:12+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: tr\n"
#. name for aaa
diff --git a/setup/iso_639/tt.po b/setup/iso_639/tt.po
index 3146f06521..238902f4c1 100644
--- a/setup/iso_639/tt.po
+++ b/setup/iso_639/tt.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 07:06+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 17:53+0000\n"
"Last-Translator: al Beri \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-03 05:26+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:10+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: \n"
#. name for aaa
diff --git a/setup/iso_639/uk.po b/setup/iso_639/uk.po
index a260776614..098ff84dcf 100644
--- a/setup/iso_639/uk.po
+++ b/setup/iso_639/uk.po
@@ -11,15 +11,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 05:12+0000\n"
-"Last-Translator: yurchor \n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 15:33+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Ukrainian \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-03 05:29+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:13+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: uk\n"
#. name for aaa
diff --git a/setup/iso_639/ve.po b/setup/iso_639/ve.po
index a592d2b21e..9e35e4c966 100644
--- a/setup/iso_639/ve.po
+++ b/setup/iso_639/ve.po
@@ -9,15 +9,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
"PO-Revision-Date: 2011-08-27 07:51+0000\n"
"Last-Translator: Fhatuwani Rambau \n"
"Language-Team: Venda \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-03 05:30+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:13+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: ve\n"
#. name for aaa
diff --git a/setup/iso_639/vi.po b/setup/iso_639/vi.po
index f312a2ddb6..601747d735 100644
--- a/setup/iso_639/vi.po
+++ b/setup/iso_639/vi.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 06:03+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 16:56+0000\n"
"Last-Translator: Clytie Siddall \n"
"Language-Team: Vietnamese \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-03 05:30+0000\n"
-"X-Generator: Launchpad (build 13830)\n"
+"X-Launchpad-Export-Date: 2011-09-28 05:14+0000\n"
+"X-Generator: Launchpad (build 14049)\n"
"Language: vi\n"
#. name for aaa
diff --git a/setup/iso_639/wa.po b/setup/iso_639/wa.po
index 75c94cfc4f..872ee8d8dc 100644
--- a/setup/iso_639/wa.po
+++ b/setup/iso_639/wa.po
@@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: iso_639_3\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
-"POT-Creation-Date: 2011-09-02 16:21+0000\n"
-"PO-Revision-Date: 2011-08-27 03:42+0000\n"
+"POT-Creation-Date: 2011-09-27 14:31+0000\n"
+"PO-Revision-Date: 2011-09-27 15:35+0000\n"
"Last-Translator: Pablo Saratxaga