[Kde-i18n-pt_br] Geração do estado_do_kde.txt

Eduardo Pereira Habkost ehabkost em conectiva.com.br
Sexta Outubro 15 19:06:29 CEST 2004


Oioi!

Notei que o arquivo estado_do_kde.txt está um pouco desatualizado,
e pelas discussões anteriores, vi que ele é atualizado manualmente.

Vi também que o Fernando Boaglio fez um sisteminha tentando facilitar a
atualização dessas informações, só que o problema era pegar as informações
automaicamente do CVS.

Então, fiz um pequeno script para gerar um arquivo igual ao
estado_do_kde.txt, porém baseado no status dos potfiles que estão no CVS.

A única informação que não pode ser obtida do CVS é o responsável por
cada pacote. Então a solução foi (mantendo o espírito de manter as coisas
simples), é ter um arquivo com os nomes dos mantenedores de cada potfile.

Por enquanto o script gera um texto muito parecido com o
estado_do_kde.txt, mas dava para fazer ele gerar um arquivo html, mais
simples de visualizar, e que destacasse os pacotes com algum trabalho
a ser feito, por exemplo.

Estou enviando:

- i18n-stats.py, que é o script
- maintainers, que é um arquivo texto com a lista de mantenedores dos potfiles, que eu *tentei* fazer
  a partir das informações que já estava no estado_do_kde.txt. Espero que não tenha faltado ninguém
- stats-template.txt, o template do relatório. Este template pode ser modificado se quisermos um
  relatório com um formato diferente
- stats.txt, um exemplo do relatório que é gerado pelo script

Para rodar o script:

- Faça checkout do kde-i18n do CVS. Na verdade só serão necessários os diretórios pt_BR e templates
- Copie o arquivo 'maintainers' e 'stats-template' para o diretório do checkout
- Rode o comando:
  i18n-stats.py pt_BR maintainers stats-template.txt > estado_do_kde.txt

O script demora alguns minutos para rodar. É muito potfile para
analisar. E eu optei pela solução "rápida" (de implementar, não de rodar
:P): chamar 'msgfmt --statistics' para cada arquivo  :)

Espero que realmente seja útil. O que falta é ver como rodar ele
diariamente, e fazer upload do relatório resultante. Quando a Lisiane
voltar de férias (Lisiane? Cadê você?), vou ver com ela se o script pode
ser útil, e onde e como ficaria mais fácil de rodá-lo.

-- 
Eduardo
-------------- Próxima Parte ----------
#!/usr/bin/python
# -*- coding: iso-8859-1 -*-
#
# i18n-stats.py
#
# Qui Set 23 2004 Eduardo Pereira Habkost <ehabkost em conectiva.com.br>
#

DEBUG = 0

import os, stat, sys, re, popen2

if DEBUG:
	def verbosemsg(m):
		sys.stderr.write(m)
else:
	def verbosemsg(m): pass

class TranslationDir:
	"""The full translation info for a language"""
	def __init__(self, templates, langdir):
		self.templates = templates
		self.langdir = langdir

		self.dict = {}

	def newstats(self,name,stats):
		self.dict[name] = stats

	def loadMaintainerInfo(self, file):
		for l in file.xreadlines():
			if not ':' in l: continue

			l = l.replace('\n','')
			part,resp = l.split(':',1)

			if self.dict.has_key(part):
				self.dict[part].setMaintainer(resp)
			else:
				sys.stderr.write('Warning: %s: file not found, but it is on maintainers file\n' % (part))

	def _dump(self,name,exclude = None):
		"""Retorna a lista de linhas com o status do grupo, detalhando o progresso
		de cada um"""
		s = self.dict[name]
		for pkgname in s.children():
			if exclude and pkgname == exclude: continue

			pkg = s.children()[pkgname]
			yield "\n- Pacote: %s\n" % (pkgname)
			if pkg.maintainer():
				yield "- Responsável: %s\n" % (pkg.maintainer())
			arqs = pkg.children()

			fmt = "%-40s - %-10s - %-10s - %s\n"
			if arqs:
				yield fmt % ("- Arquivos","Num. msgs", "Tradução", "Responsável")
			for arq in arqs:
				status = pkg.children()[arq]
				yield fmt % (arq,status.total(),"%.2f%%" % status.percent(), status.maintainer())
			yield "\n- Concluído: %d%%\n\n" % (pkg.percent())

	def gettranslated(self,name):
		return self.dict[name].translated()
	
	def gettotal(self,name):
		return self.dict[name].total()

	def getpercent(self,name):
		return self.dict[name].percent()

	def dump(self,name):
		return ''.join(self._dump(name))

	def dump_excluding(self,name,exclude):
		return ''.join(self._dump(name,exclude))

	def gettime(self):
		import time
		return time.asctime()

	def handlefield(self,match):
		symbols = {
			'translated':self.gettranslated,
			'total':self.gettotal,
			'dump':self.dump,
			'dump_excluding':self.dump_excluding,
			'percent':self.getpercent,
			'time':self.gettime
		}
		expr = match.group(1)
		return str(eval(expr, symbols))

	def processtemplate(self, file):
		re_fields = re.compile('<<(.*?)>>')
		for l in file.xreadlines():
			print re_fields.sub(self.handlefield,l)


class TranslationStatus:
	def __init__(self,cfg,isdirectory=1,name = ''):
		self.name = name
		self.dict = dict
		self._maintainer = ''

		self.cfg = cfg
		cfg.newstats(name,self)

		if isdirectory: self._calcfromdir()
		else: self._calcfromfile()

	def _sum(self, other):
		self._translated += other.translated()
		self._fuzzy += other.fuzzy()
		self._untranslated += other.untranslated()

	def children(self):
		#self._listchildren()
		return self._children
	
	def translated(self):
		#self._calculate()
		return self._translated

	def fuzzy(self):
		#self._calculate()
		return self._fuzzy
	
	def untranslated(self):
		#self._calculate()
		return self._untranslated

	def maintainer(self):
		verbosemsg('%s: checking maintainer: %s\n' % (self.name, self._maintainer))
		return self._maintainer

	def setMaintainer(self, maint):
		verbosemsg('%s: maintainer: %s\n' % (self.name, maint))
		self._maintainer = maint

	def percent(self):
		#self._calculate()

		if not self.total(): return 0
		return self.translated()*100./self.total()

	def total(self):
		#self._calculate()
		return self._translated + self._fuzzy + self._untranslated

	def _resetcounters(self):
		self._translated = 0
		self._untranslated = 0
		self._fuzzy = 0

	def _listchildren(self):
		"""Retorna o status de um diretório. Lista a partir
		do diretório de templates"""

		#if self.listed: return

		directory = os.path.join(self.cfg.templates,self.name)
		verbosemsg('Listing %s...\n' % (directory))
		try: files = os.listdir(directory)
		except: files = []

		self._children = {}

		for f in files:
			if f == 'CVS': continue

			name = os.path.join(self.name,f)
			path = os.path.join(self.cfg.templates,name)
			mode = os.lstat(path).st_mode

			if stat.S_ISDIR(mode):
				child = TranslationStatus(self.cfg,1,name)
			elif f.endswith('.pot'):
				child = TranslationStatus(self.cfg,0,name)
			else: continue

			self._children[f] = child

		self.listed = 1

	def _sumchildren(self):
		self._resetcounters()
		for c in self.children().values():
			self._sum(c)

	def _calcfromdir(self):
		self._listchildren()
		self._sumchildren()

	def _calcfromfile(self):
		"""Retorna o status de um arquivo .po"""

		#if not self.name.endswith('.po'): return

		potfile = os.path.join(self.cfg.templates, self.name)
		pofile = os.path.join(self.cfg.langdir, re.sub('\.pot$','.po',self.name))

		filename = pofile
		if not os.access(pofile, os.R_OK):
			filename = potfile

		verbosemsg('Reading %s...\n' % (filename))

		pout,pin = popen2.popen4("LC_ALL=C LANG=C msgfmt --statistics '%s'" % (filename))
		stats = {'translated':0, 'fuzzy':0, 'untranslated':0}

		# msgfmt output format: "%d translated messages[, %d fuzzy translations][, %d untranslated messages].
		for l in pout.readlines():
			for p in l.split(','):
				m = re.match(' *(\d+) (translated|fuzzy|untranslated)',p)
				if not m: continue

				number = int(m.group(1))
				type = m.group(2)
				stats[type] = number

		self._translated = stats['translated']
		self._fuzzy = stats['fuzzy']
		self._untranslated = stats['untranslated']

		self._children = {}

def usage():
	sys.stderr.write('Usage: i18n-gui-stats language maintainers-file template\n')

def main(argv):
	try:
		import psyco
		psyco.profile()
	except: pass

	if len(argv) < 4:
		usage()
		return 1

	verbosemsg("Obtendo informações dos arquivos...\n")
	cfg = TranslationDir('templates', os.path.join(argv[1],'messages'))
	stats = TranslationStatus(cfg)
	cfg.loadMaintainerInfo(open(argv[2],"r"))

	cfg.processtemplate(open(argv[3], "r"))

#	template = open(argv[3],"r")
#	for l in 
#		print l,

if __name__ == '__main__':
	sys.exit(main(sys.argv))
-------------- Próxima Parte ----------

kdelibs: <lisiane em conectiva.com.br>


kdeadmin/desktop_kdeadmin.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/kcmlilo.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/kcmlinuz.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/kcron.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/kdat.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/kfile_deb.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/kfile_rpm.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/kpackage.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/ksysv.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/kuser.pot: <fernandoboaglio em yahoo.com.br>
kdenonbeta/kwuftpd.pot: <fernandoboaglio em yahoo.com.br>
kdenonbeta/kxconfig.pot: <fernandoboaglio em yahoo.com.br>
kdeadmin/secpolicy.pot: <fernandoboaglio em yahoo.com.br>

kdeedu/kmplot.pot: <asergioz em bol.com.br>
kdeedu/kpercentage.pot: <asergioz em bol.com.br>
kdeedu/kverbos.pot: <asergioz em bol.com.br>

kdeextragear-1/amarok.pot: <webmaster em lmfarma.com.br>
kdenonbeta/desktop_kdenonbeta.pot: <webmaster em lmfarma.com.br>
kdenonbeta/empath.pot: <asergioz em bol.com.br>
kdenonbeta/filelight.pot: <danielscarvalho em netscape.net>
kdeaddons/fsview.pot: <asergioz em bol.com.br>
kdeextragear-1/kallers.pot: <asergioz em bol.com.br>
kdenonbeta/kapture.pot: <danielscarvalho em netscape.net>
kdenonbeta/karchiver.pot: <asergioz em bol.com.br>
kdenonbeta/kard.pot: <webmaster em lmfarma.com.br>
kdenonbeta/katalog.pot: <asergioz em bol.com.br>
kdenonbeta/kblog.pot: <ghiraldelli em web.de>
kdenonbeta/kbrain.pot: <webmaster em lmfarma.com.br>
kdenonbeta/kcmautorun.pot: <danielscarvalho em netscape.net>
kdenonbeta/kcmbind.pot: <asergioz em bol.com.br>
kdenonbeta/kfs.pot: <asergioz em bol.com.br>
kdenonbeta/kgallery.pot: <danielscarvalho em netscape.net>
kdenonbeta/kicq.pot: <asergioz em bol.com.br>
kdenonbeta/kim.pot: <asergioz em bol.com.br>
kdeedu/klatin.pot: <asergioz em bol.com.br>
kdenonbeta/klogoturtle.pot: <gutembergf em horizon.com.br>
kdenonbeta/klogtool.pot: <asergioz em bol.com.br>
kdenonbeta/knu.pot: <asergioz em bol.com.br>
kdenonbeta/konv.pot: <asergioz em bol.com.br>
kdenonbeta/kopennap.pot: <asergioz em bol.com.br>
kdenonbeta/kpolicy.pot: <asergioz em bol.com.br>
kdenonbeta/ktalk.pot: <asergioz em bol.com.br>
kdenonbeta/ktetrinet.pot: <asergioz em bol.com.br>
kdenonbeta/kwhatsbroken.pot: <webmaster em lmfarma.com.br>
kdenonbeta/kwiz.pot: <webmaster em lmfarma.com.br>


kdesdk/cervisia.pot: <marcus_gama em uol.com.br>
kdesdk/cvsservice.pot: <marcus_gama em uol.com.br>
kdesdk/desktop_kdesdk.pot: <marcus_gama em uol.com.br>
kdesdk/kbabel.pot: <marcus_gama em uol.com.br>
kdesdk/kbugbuster.pot: <marcus_gama em uol.com.br>
kdesdk/kdevelop.pot: <marcus_gama em uol.com.br>
kdesdk/kdevtipofday.pot: <marcus_gama em uol.com.br>
kdesdk/kfile_cpp.pot: <marcus_gama em uol.com.br>
kdesdk/kfile_diff.pot: <marcus_gama em uol.com.br>
kdesdk/kfile_po.pot: <marcus_gama em uol.com.br>
kdesdk/kfile_ts.pot: <marcus_gama em uol.com.br>
kdesdk/kompare.pot: <marcus_gama em uol.com.br>
kdesdk/kstartperf.pot: <marcus_gama em uol.com.br>
kdesdk/qeditor.pot: <marcus_gama em uol.com.br>
kdewebdev/quanta.pot: <asergioz em bol.com.br>
kdesdk/spy.pot: <marcus_gama em uol.com.br>
kdesdk/umbrello.pot: <marcus_gama em uol.com.br>


kdeutils/ark.pot: <asergioz em bol.com.br>
kdeutils/desktop_kdeutils.pot: <asergioz em bol.com.br>
kdeutils/irkick.pot: <gmcarvalho em yahoo.com>
kdeutils/kcalc.pot: <asergioz em bol.com.br>
kdeutils/kcardchooser.pot: <asergioz em bol.com.br>
kdeutils/kcharselect.pot: <asergioz em bol.com.br>
kdeutils/kcmkwallet.pot: <webmaster em lmfarma.com.br>
kdebase/kdepasswd.pot: <asergioz em bol.com.br>
kdeutils/kdf.pot: <asergioz em bol.com.br>
kdeutils/kedit.pot: <asergioz em bol.com.br>
kdeutils/kfloppy.pot: <asergioz em bol.com.br>
kdeutils/kgpg.pot: <marcus_gama em uol.com.br>
kdeutils/khexedit.pot: <asergioz em bol.com.br>
kdeutils/kjots.pot: <asergioz em bol.com.br>
kdeutils/klaptopdaemon.pot: <asergioz em bol.com.br>
kdeutils/kregexpeditor.pot: <asergioz em bol.com.br>
kdeutils/ksim.pot: <asergioz em bol.com.br>
kdeutils/ktimer.pot: <asergioz em bol.com.br>

koffice/desktop_koffice.pot: <marcus_gama em uol.com.br>
koffice/example.pot: <marcus_gama em uol.com.br>
koffice/karbon.pot: <marcus_gama em uol.com.br>
koffice/kchart.pot: <marcus_gama em uol.com.br>
koffice/kexi.pot: <marcus_gama em uol.com.br>
koffice/kfile_koffice.pot: <marcus_gama em uol.com.br>
koffice/kfile_ooo.pot: <marcus_gama em uol.com.br>
koffice/kformdesigner.pot: <marcus_gama em uol.com.br>
koffice/kformula.pot: <marcus_gama em uol.com.br>
koffice/koconverter.pot: <marcus_gama em uol.com.br>
koffice/koffice.pot: <marcus_gama em uol.com.br>
koffice/koshell.pot: <marcus_gama em uol.com.br>
koffice/kounavail.pot: <marcus_gama em uol.com.br>
koffice/kplato.pot: <marcus_gama em uol.com.br>
koffice/kpresenter.pot: <marcus_gama em uol.com.br>
koffice/krita.pot: <marcus_gama em uol.com.br>
koffice/kscan_plugin.pot: <marcus_gama em uol.com.br>
koffice/kspread.pot: <marcus_gama em uol.com.br>
koffice/kspreadcalc_calc.pot: <marcus_gama em uol.com.br>
koffice/kthesaurus.pot: <marcus_gama em uol.com.br>
koffice/kugar.pot: <marcus_gama em uol.com.br>
koffice/kword.pot: <marcus_gama em uol.com.br>
koffice/thesaurus_tool.pot: <marcus_gama em uol.com.br>

koffice: Problemas: usar branch KOFFICE_1_3 e não o HEAD

kdeextragear-3/keurocalc.pot: <user9 em uol.com.br>
others/klog.pot: <blackfirebird em globo.com>
others/kpp.pot: <user9 em uol.com.br>
others/ksetiwatch.pot: <lisiane em conectiva.com.br>
others/kssh.pot: <gmcarvalho em yahoo.com>
others/kwebget.pot: <felipe em conectiva.com.br>

docs: Marcus Gama (marcus_gama em uol.com.br)

docs/kdebase/kate.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_advanced.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_configuring.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_fundamentals.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_highlighting.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_mdi.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_menus.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_part.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_plugins.pot: <lisiane em conectiva.com.br>
docs/kdebase/kate_regular-expressions.pot: <lisiane em conectiva.com.br>
docs/kdebase/kdeprint.pot: <127.o.o.1 em bol.com.br>
docs/kdebase/kdeprint_add-printer-wiz.pot: <127.o.o.1 em bol.com.br>
docs/kdebase/kdeprint_extensions.pot: <127.o.o.1 em bol.com.br>
docs/kdebase/kdeprint_external-command.pot: <127.o.o.1 em bol.com.br>
docs/kdebase/kdeprint_lpd.pot: <127.o.o.1 em bol.com.br>
docs/kdebase/kdeprint_lpr-bsd.pot: <127.o.o.1 em bol.com.br>
docs/kdebase/kdeprint_lprng.pot: <127.o.o.1 em bol.com.br>
docs/kdebase/kdeprint_rlpr.pot: <127.o.o.1 em bol.com.br>
docs/kdebase/khelpcenter.pot: <marcus_gama em uol.com.br>
docs/kdebase/khelpcenter_contact.pot: <marcus_gama em uol.com.br>
docs/kdebase/khelpcenter_help.pot: <marcus_gama em uol.com.br>
docs/kdebase/khelpcenter_support.pot: <marcus_gama em uol.com.br>
docs/kdebase/khelpcenter_welcome.pot: <marcus_gama em uol.com.br>
docs/kdebase/khelpcenter_whatiskde.pot: <marcus_gama em uol.com.br>
docs/kdebase/kicker.pot: <asergioz em bol.com.br>
docs/kdebase/kioslave.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_audiocd.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_bzip2.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_bzip.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_cgi.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_data.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_file.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_finger.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_fish.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_floppy.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_ftp.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_gopher.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_gzip.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_help.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_http.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_https.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_imap.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_imaps.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_info.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_lan.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_ldap.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_mac.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_mailto.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_man.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_mrml.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_news.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_nfs.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_nntp.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_pop3.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_pop3s.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_print.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_rlan.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_rlogin.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_sftp.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_smb.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_smtp.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_tar.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_telnet.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_thumbnail.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_webdav.pot: <lisiane em conectiva.com.br>
docs/kdebase/kioslave_webdavs.pot: <lisiane em conectiva.com.br>



docs/kdeedu/kverbos.pot: <turmawb em yahoo.com.br>
docs/kdeedu/kvoctrain.pot: <turmawb em yahoo.com.br>



docs/kdegames/atlantik.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/kasteroids.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/katomic.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/kbackgammon.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/kbattleship.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/kblackbox.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/kbounce.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/kfouleggs.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/kjumpingcube.pot: <fernando.conceicao em terra.com.br>
docs/kdegames/klines.pot: <fernando.conceicao em terra.com.br>



docs/kdepim/kmail.pot: <MarcosG em Boticario.com.br> - 22/10/2003
docs/kdepim/korn.pot: <mpacheco em mailbr.com.br>
docs/kdenetwork/kppp.pot: <marcelosf em altavista.net>
docs/kdenetwork/kppp_global-settings.pot: <marcelosf em altavista.net>
docs/kdenetwork/kppp_kppp-faq.pot: <marcelosf em altavista.net>
docs/kdenetwork/kppp_security.pot: <marcelosf em altavista.net>
docs/kdenetwork/ksirc.pot: <mpacheco em mailbr.com.br>




docs/kdesdk/cervisia.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel_catman.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel_dictionaries.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel_faq.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel_glossary.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel_kbabeldict.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel_menu.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel_preferences.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbabel_using.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kbugbuster.pot: <marcus_gama em uol.com.br>
docs/kdesdk/kompare.pot: <marcus_gama em uol.com.br>



docs/koffice/kchart.pot: <marcus_gama em uol.com.br>
docs/koffice/kformula.pot: <marcus_gama em uol.com.br>
docs/koffice/koffice.pot: <marcus_gama em uol.com.br>
docs/koffice/koshell.pot: <marcus_gama em uol.com.br>
docs/koffice/kpresenter.pot: <marcus_gama em uol.com.br>
docs/koffice/kpresenter_faq.pot: <marcus_gama em uol.com.br>
docs/koffice/kpresenter_great-presentations.pot: <marcus_gama em uol.com.br>
docs/koffice/kpresenter_guides.pot: <marcus_gama em uol.com.br>
docs/koffice/kpresenter_menus.pot: <marcus_gama em uol.com.br>
docs/koffice/kpresenter_options.pot: <marcus_gama em uol.com.br>
docs/koffice/kpresenter_screen.pot: <marcus_gama em uol.com.br>
docs/koffice/kpresenter_tutorial.pot: <marcus_gama em uol.com.br>
docs/koffice/kspread.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_datadtd.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_dataref.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_designer.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_progguide.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_starting.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_template.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_template-elements.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_templatedtd.pot: <marcus_gama em uol.com.br>
docs/koffice/kugar_tutorial.pot: <marcus_gama em uol.com.br>
docs/koffice/kword.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_basics.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_bookmarks.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_chapnumb.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_columns.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_doclinks.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_docstruct.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_editing.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_expressions.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_footendnotes.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_formatchar.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_formatframes.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_formatpara.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_formulas.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_frames.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_fundimentals.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_graphics.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_headerfooter.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_insertfile.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_kparts.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_lists.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_mailmerge.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_mbtb.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_opt.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_pageformat.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_storeprint.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_styles.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_table.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_tabstops.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_techinfo.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_templatecreation.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_toc.pot: <marcus_gama em uol.com.br>
docs/koffice/kword_tutorial.pot: <marcus_gama em uol.com.br>
docs/koffice/thesaurus.pot: <marcus_gama em uol.com.br>



docs/kdeextragear-3/keurocalc.pot: <henrique em digerati.com.br>
-------------- Próxima Parte ----------
Estado da tradução do KDE em <<time()>>


GUI   ------------------------------------------------------------------------------
Coordenadora: Lisiane Sztoltz (lisiane em conectiva.com.br)

Total concluído: <<"%.2f%%" % (((translated('') - translated('docs'))*100.)/(total('') - total('docs')))>>

<<dump_excluding('','docs')>>

Documentação   -----------------------------------------------------------------

Total concluído: <<"%.2f%%" % percent('docs')>>
Coordenador: Marcus Gama (marcus_gama em uol.com.br)

<<dump('docs')>>

-------------- Próxima Parte ----------
Estado da tradução do KDE em Fri Oct 15 13:02:05 2004





GUI   ------------------------------------------------------------------------------

Coordenadora: Lisiane Sztoltz (lisiane em conectiva.com.br)



Total concluído: 87.17%




- Pacote: kdesdk
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kuiviewer.pot                            - 10         - 100.00%    - 
kres_bugzilla.pot                        - 6          - 0.00%      - 
kbugbuster.pot                           - 206        - 100.00%    -  <marcus_gama em uol.com.br>
kfile_ts.pot                             - 5          - 100.00%    -  <marcus_gama em uol.com.br>
qeditor.pot                              - 100        - 100.00%    -  <marcus_gama em uol.com.br>
spy.pot                                  - 3          - 100.00%    -  <marcus_gama em uol.com.br>
kstartperf.pot                           - 6          - 100.00%    -  <marcus_gama em uol.com.br>
umbrello.pot                             - 725        - 100.00%    -  <marcus_gama em uol.com.br>
cervisia.pot                             - 370        - 99.73%     -  <marcus_gama em uol.com.br>
cvsservice.pot                           - 14         - 100.00%    -  <marcus_gama em uol.com.br>
kcachegrind.pot                          - 491        - 100.00%    - 
kbabel.pot                               - 907        - 100.00%    -  <marcus_gama em uol.com.br>
kdevelop.pot                             - 4186       - 54.04%     -  <marcus_gama em uol.com.br>
kfile_diff.pot                           - 22         - 100.00%    -  <marcus_gama em uol.com.br>
kfile_cpp.pot                            - 8          - 100.00%    -  <marcus_gama em uol.com.br>
desktop_kdesdk.pot                       - 73         - 97.26%     -  <marcus_gama em uol.com.br>
kdevdesigner.pot                         - 9          - 100.00%    - 
desktop_kdevelop.pot                     - 343        - 100.00%    - 
kfile_po.pot                             - 7          - 100.00%    -  <marcus_gama em uol.com.br>
kdevtipofday.pot                         - 34         - 100.00%    -  <marcus_gama em uol.com.br>
kompare.pot                              - 183        - 100.00%    -  <marcus_gama em uol.com.br>

- Concluído: 74%


- Pacote: koffice
- Responsável:  Problemas: usar branch KOFFICE_1_3 e não o HEAD
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kpresenter.pot                           - 828        - 100.00%    -  <marcus_gama em uol.com.br>
thesaurus_tool.pot                       - 32         - 100.00%    -  <marcus_gama em uol.com.br>
kscreenshot_plugin.pot                   - 28         - 100.00%    - 
desktop_koffice.pot                      - 350        - 99.43%     -  <marcus_gama em uol.com.br>
karbon.pot                               - 348        - 100.00%    -  <marcus_gama em uol.com.br>
kugar.pot                                - 125        - 100.00%    -  <marcus_gama em uol.com.br>
kformdesigner.pot                        - 232        - 100.00%    -  <marcus_gama em uol.com.br>
kspread.pot                              - 2978       - 100.00%    -  <marcus_gama em uol.com.br>
koffice.pot                              - 1024       - 100.00%    -  <marcus_gama em uol.com.br>
kchart.pot                               - 221        - 100.00%    -  <marcus_gama em uol.com.br>
krita.pot                                - 608        - 99.18%     -  <marcus_gama em uol.com.br>
kofficefilters.pot                       - 203        - 100.00%    - 
kfile_koffice.pot                        - 5          - 100.00%    -  <marcus_gama em uol.com.br>
example.pot                              - 5          - 100.00%    -  <marcus_gama em uol.com.br>
koshell.pot                              - 10         - 100.00%    -  <marcus_gama em uol.com.br>
kspreadcalc_calc.pot                     - 17         - 100.00%    -  <marcus_gama em uol.com.br>
kexi.pot                                 - 740        - 99.19%     -  <marcus_gama em uol.com.br>
kscan_plugin.pot                         - 3          - 100.00%    -  <marcus_gama em uol.com.br>
kthesaurus.pot                           - 6          - 100.00%    -  <marcus_gama em uol.com.br>
koconverter.pot                          - 15         - 100.00%    -  <marcus_gama em uol.com.br>
kword.pot                                - 900        - 100.00%    -  <marcus_gama em uol.com.br>
kfile_ooo.pot                            - 30         - 100.00%    -  <marcus_gama em uol.com.br>
kplato.pot                               - 206        - 97.57%     -  <marcus_gama em uol.com.br>
kivio.pot                                - 891        - 100.00%    - 
kformula.pot                             - 28         - 100.00%    -  <marcus_gama em uol.com.br>
kdgantt.pot                              - 38         - 100.00%    - 
kounavail.pot                            - 4          - 100.00%    -  <marcus_gama em uol.com.br>

- Concluído: 99%


- Pacote: kdenonbeta
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kue.pot                                  - 11         - 100.00%    - 
khtmlkttsd.pot                           - 6          - 0.00%      - 
kcmkttsmgr.pot                           - 46         - 0.00%      - 
pixie.pot                                - 623        - 0.00%      - 
kgallery.pot                             - 90         - 100.00%    -  <danielscarvalho em netscape.net>
kio_gopher.pot                           - 5          - 100.00%    - 
knetmgr.pot                              - 41         - 95.12%     - 
uirtk.pot                                - 7          - 0.00%      - 
businesskard.pot                         - 6          - 0.00%      - 
ksniffer.pot                             - 63         - 0.00%      - 
realrekord.pot                           - 152        - 0.00%      - 
knu.pot                                  - 66         - 100.00%    -  <asergioz em bol.com.br>
frontssh.pot                             - 18         - 100.00%    - 
kttsmgr.pot                              - 10         - 0.00%      - 
kttt.pot                                 - 45         - 73.33%     - 
kio_smbro.pot                            - 12         - 0.00%      - 
devcenter.pot                            - 53         - 100.00%    - 
kclipspellapplet.pot                     - 9          - 100.00%    - 
ksvgplugin.pot                           - 2          - 0.00%      - 
twister.pot                              - 5          - 100.00%    - 
kmath.pot                                - 26         - 100.00%    - 
akregator.pot                            - 215        - 61.40%     - 
kgeography.pot                           - 674        - 0.00%      - 
kbstateapplet.pot                        - 54         - 0.00%      - 
klogtool.pot                             - 73         - 100.00%    -  <asergioz em bol.com.br>
kcmautorun.pot                           - 31         - 93.55%     -  <danielscarvalho em netscape.net>
kio_acap.pot                             - 8          - 100.00%    - 
khexedit.pot                             - 15         - 100.00%    - 
kicq.pot                                 - 397        - 99.50%     -  <asergioz em bol.com.br>
konv.pot                                 - 93         - 100.00%    -  <asergioz em bol.com.br>
kxconfig.pot                             - 144        - 100.00%    -  <fernandoboaglio em yahoo.com.br>
kcmfinglonger.pot                        - 32         - 93.75%     - 
konserve.pot                             - 82         - 0.00%      - 
kcmkttsd.pot                             - 43         - 100.00%    - 
pax.pot                                  - 11         - 100.00%    - 
ksystrayproxy.pot                        - 15         - 100.00%    - 
kim.pot                                  - 111        - 100.00%    -  <asergioz em bol.com.br>
kfile_modplug.pot                        - 10         - 100.00%    - 
kimproxy.pot                             - 5          - 0.00%      - 
dcopservice.pot                          - 5          - 0.00%      - 
kapture.pot                              - 42         - 97.62%     -  <danielscarvalho em netscape.net>
katekttsd.pot                            - 5          - 0.00%      - 
knx.pot                                  - 92         - 0.00%      - 
kmessage.pot                             - 28         - 100.00%    - 
kwuftpd.pot                              - 255        - 0.00%      -  <fernandoboaglio em yahoo.com.br>
kcmstyle2.pot                            - 79         - 0.00%      - 
kcmthemes.pot                            - 52         - 100.00%    - 
kblog.pot                                - 103        - 100.00%    -  <ghiraldelli em web.de>
kmathtool.pot                            - 174        - 0.00%      - 
libkdeimap.pot                           - 16         - 0.00%      - 
cookbook.pot                             - 69         - 100.00%    - 
desktop_kdenonbeta.pot                   - 505        - 82.18%     -  <webmaster em lmfarma.com.br>
kdatabase.pot                            - 28         - 100.00%    - 
konference.pot                           - 55         - 0.00%      - 
kjsapplet.pot                            - 11         - 0.00%      - 
akregator_konqplugin.pot                 - 4          - 75.00%     - 
kio_dnssd.pot                            - 2          - 0.00%      - 
kio_svn.pot                              - 1          - 100.00%    - 
kfs.pot                                  - 188        - 100.00%    -  <asergioz em bol.com.br>
koncd.pot                                - 359        - 100.00%    - 
kcmkdnssd.pot                            - 13         - 0.00%      - 
katalog.pot                              - 23         - 100.00%    -  <asergioz em bol.com.br>
kmathprof.pot                            - 23         - 0.00%      - 
kwhatsbroken.pot                         - 28         - 92.86%     -  <webmaster em lmfarma.com.br>
kcm_splash.pot                           - 29         - 100.00%    - 
xinput.pot                               - 60         - 0.00%      - 
krafty.pot                               - 19         - 0.00%      - 
kcmksynaptics.pot                        - 73         - 0.00%      - 
keepit.pot                               - 15         - 0.00%      - 
kttsjobmgr.pot                           - 32         - 0.00%      - 
karchiver.pot                            - 417        - 74.10%     -  <asergioz em bol.com.br>
kopennap.pot                             - 297        - 100.00%    -  <asergioz em bol.com.br>
gofai.pot                                - 61         - 100.00%    - 
kcmgofai.pot                             - 14         - 100.00%    - 
kfly.pot                                 - 92         - 0.00%      - 
kcmdhcpd.pot                             - 81         - 100.00%    - 
kscoreapplet.pot                         - 21         - 100.00%    - 
kvidmode.pot                             - 68         - 100.00%    - 
frontman.pot                             - 8          - 100.00%    - 
kwiz.pot                                 - 62         - 100.00%    -  <webmaster em lmfarma.com.br>
ksearchapplet.pot                        - 6          - 83.33%     - 
kwintv.pot                               - 226        - 100.00%    - 
kard.pot                                 - 54         - 81.48%     -  <webmaster em lmfarma.com.br>
ktracer.pot                              - 35         - 0.00%      - 
kalternatives.pot                        - 38         - 0.00%      - 
knetworksettings.pot                     - 49         - 100.00%    - 
imapplet.pot                             - 15         - 0.00%      - 
kallers.pot                              - 5          - 0.00%      - 
empath.pot                               - 79         - 100.00%    -  <asergioz em bol.com.br>
kttsd.pot                                - 11         - 54.55%     - 
kpolicy.pot                              - 115        - 100.00%    -  <asergioz em bol.com.br>
kmobiletools.pot                         - 181        - 0.00%      - 
kabc_passwd.pot                          - 8          - 100.00%    - 
kcmnapster.pot                           - 18         - 100.00%    - 
kchangelogmaker.pot                      - 18         - 100.00%    - 
kcmsblive.pot                            - 11         - 100.00%    - 
kswfplay.pot                             - 9          - 100.00%    - 
ktetrinet.pot                            - 61         - 80.33%     -  <asergioz em bol.com.br>
kubication.pot                           - 74         - 0.00%      - 
kbrain.pot                               - 84         - 100.00%    -  <webmaster em lmfarma.com.br>
nvidia3d.pot                             - 76         - 0.00%      - 
kstatusapplet.pot                        - 5          - 0.00%      - 
filelight.pot                            - 71         - 100.00%    -  <danielscarvalho em netscape.net>
kdestdifacedemo.pot                      - 37         - 100.00%    - 
katepartkttsd.pot                        - 6          - 0.00%      - 
kafka.pot                                - 11         - 100.00%    - 
kaphorism.pot                            - 4          - 100.00%    - 
klogoturtle.pot                          - 60         - 100.00%    -  <gutembergf em horizon.com.br>
kcontrol.pot                             - 12         - 0.00%      - 
kcmbind.pot                              - 133        - 100.00%    -  <asergioz em bol.com.br>
kdeprintphoto.pot                        - 58         - 17.24%     - 
tcbeacond.pot                            - 20         - 0.00%      - 
kcmkvmcontrol.pot                        - 32         - 0.00%      - 
ktalk.pot                                - 122        - 100.00%    -  <asergioz em bol.com.br>

- Concluído: 57%


- Pacote: kdeextragear-libs-1
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kipiplugin_acquireimages.pot             - 60         - 70.00%     - 
kipiplugin_imagesgallery.pot             - 131        - 74.81%     - 
kipiplugins.pot                          - 16         - 0.00%      - 
kipiplugin_rawconverter.pot              - 62         - 6.45%      - 
libkipi.pot                              - 26         - 38.46%     - 
kipiplugin_wallpaper.pot                 - 9          - 100.00%    - 
kipiplugin_slideshow.pot                 - 39         - 87.18%     - 
kipiplugin_printwizard.pot               - 79         - 64.56%     - 
kipiplugin_cdarchiving.pot               - 129        - 85.27%     - 
kipiplugin_calendar.pot                  - 28         - 57.14%     - 
kipiplugin_findimages.pot                - 69         - 55.07%     - 
kipiplugin_jpeglossless.pot              - 22         - 77.27%     - 
kipiplugin_batchprocessimages.pot        - 336        - 68.45%     - 
desktop_kdeextragear-libs-1.pot          - 34         - 0.00%      - 
kipiplugin_sendimages.pot                - 73         - 52.05%     - 
kipiplugin_timeadjust.pot                - 25         - 60.00%     - 
libkexif.pot                             - 12         - 41.67%     - 
kipiplugin_mpegencoder.pot               - 92         - 13.04%     - 

- Concluído: 58%


- Pacote: kdetoys
- Arquivos                               - Num. msgs  - Tradução   - Responsável
amor.pot                                 - 40         - 97.50%     - 
kworldclock.pot                          - 31         - 100.00%    - 
kweather.pot                             - 149        - 77.85%     - 
ktux.pot                                 - 5          - 100.00%    - 
kfifteenapplet.pot                       - 8          - 100.00%    - 
desktop_kdetoys.pot                      - 55         - 98.18%     - 
kmoon.pot                                - 20         - 100.00%    - 
kodo.pot                                 - 21         - 100.00%    - 
kteatime.pot                             - 40         - 100.00%    - 

- Concluído: 90%


- Pacote: kdegraphics
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kfile_ps.pot                             - 6          - 100.00%    - 
kcm_kviewcanvasconfig.pot                - 21         - 100.00%    - 
libkscan.pot                             - 111        - 100.00%    - 
kfile_pnm.pot                            - 7          - 100.00%    - 
kviewpresenterplugin.pot                 - 20         - 100.00%    - 
kview_scale.pot                          - 19         - 100.00%    - 
kvieweffectsplugin.pot                   - 11         - 100.00%    - 
kiconedit.pot                            - 134        - 100.00%    - 
kfile_jpeg.pot                           - 65         - 87.69%     - 
kcmkamera.pot                            - 32         - 100.00%    - 
kpovmodeler.pot                          - 1023       - 100.00%    - 
kviewviewer.pot                          - 39         - 100.00%    - 
kfile_exr.pot                            - 57         - 100.00%    - 
kolourpaint.pot                          - 370        - 94.05%     - 
kruler.pot                               - 25         - 100.00%    - 
kcm_kviewpluginsconfig.pot               - 1          - 100.00%    - 
kfile_dvi.pot                            - 4          - 100.00%    - 
kview.pot                                - 12         - 100.00%    - 
kviewshell.pot                           - 83         - 95.18%     - 
kcm_kviewviewerpluginsconfig.pot         - 1          - 100.00%    - 
kviewscannerplugin.pot                   - 4          - 100.00%    - 
kfile_rgb.pot                            - 16         - 100.00%    - 
kviewcanvas.pot                          - 2          - 0.00%      - 
kfile_gif.pot                            - 3          - 100.00%    - 
kfile_ico.pot                            - 6          - 100.00%    - 
kuickshow.pot                            - 107        - 100.00%    - 
kdvi.pot                                 - 242        - 92.98%     - 
ksvgplugin.pot                           - 13         - 100.00%    - 
kfile_pdf.pot                            - 17         - 100.00%    - 
kfile_bmp.pot                            - 16         - 100.00%    - 
desktop_kdegraphics.pot                  - 96         - 100.00%    - 
kviewtemplateplugin.pot                  - 1          - 100.00%    - 
kfile_tiff.pot                           - 49         - 100.00%    - 
kfile_png.pot                            - 24         - 100.00%    - 
kooka.pot                                - 254        - 100.00%    - 
kviewbrowserplugin.pot                   - 1          - 100.00%    - 
kfile_pcx.pot                            - 7          - 100.00%    - 
kpdf.pot                                 - 350        - 5.43%      - 
kghostview.pot                           - 124        - 91.94%     - 
kfile_xbm.pot                            - 2          - 100.00%    - 
kfile_tga.pot                            - 13         - 100.00%    - 
kmrml.pot                                - 74         - 100.00%    - 
kcm_kviewgeneralconfig.pot               - 6          - 100.00%    - 
ksnapshot.pot                            - 35         - 100.00%    - 
kgamma.pot                               - 16         - 100.00%    - 
kcoloredit.pot                           - 34         - 100.00%    - 
kfax.pot                                 - 66         - 100.00%    - 

- Concluído: 89%


- Pacote: kdemultimedia
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kscd.pot                                 - 158        - 83.54%     - 
kfile_flac.pot                           - 20         - 100.00%    - 
kfile_avi.pot                            - 9          - 100.00%    - 
kio_audiocd.pot                          - 9          - 55.56%     - 
artsbuilder.pot                          - 90         - 100.00%    - 
kcmcddb.pot                              - 40         - 72.50%     - 
desktop_kdemultimedia.pot                - 139        - 98.56%     - 
juk.pot                                  - 275        - 86.91%     - 
kmix.pot                                 - 124        - 95.97%     - 
libkcddb.pot                             - 9          - 88.89%     - 
kfile_m3u.pot                            - 2          - 100.00%    - 
kfile_mp3.pot                            - 22         - 100.00%    - 
audiocd_encoder_lame.pot                 - 78         - 0.00%      - 
artsmodules.pot                          - 48         - 95.83%     - 
kcmaudiocd.pot                           - 34         - 47.06%     - 
kfile_theora.pot                         - 9          - 0.00%      - 
kfile_au.pot                             - 14         - 100.00%    - 
kmid.pot                                 - 204        - 100.00%    - 
noatun.pot                               - 310        - 98.39%     - 
krec.pot                                 - 110        - 100.00%    - 
kcmkmix.pot                              - 10         - 100.00%    - 
kfile_sid.pot                            - 9          - 100.00%    - 
kfile_ogg.pot                            - 23         - 100.00%    - 
kfile_wav.pot                            - 7          - 100.00%    - 
kaboodle.pot                             - 25         - 100.00%    - 
kaudiocreator.pot                        - 355        - 100.00%    - 
artscontrol.pot                          - 74         - 100.00%    - 
audiocd_encoder_vorbis.pot               - 34         - 0.00%      - 
kfile_mpc.pot                            - 19         - 100.00%    - 

- Concluído: 89%


- Pacote: kdewebdev
- Arquivos                               - Num. msgs  - Tradução   - Responsável
desktop_kdewebdev.pot                    - 29         - 93.10%     - 
quanta.pot                               - 2297       - 94.91%     -  <asergioz em bol.com.br>
kommander.pot                            - 1020       - 76.37%     - 
kimagemapeditor.pot                      - 182        - 100.00%    - 
kxsldbg.pot                              - 369        - 40.38%     - 
klinkstatus.pot                          - 95         - 89.47%     - 
kfilereplace.pot                         - 182        - 45.60%     - 

- Concluído: 83%


- Pacote: kdepim
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kio_newimap4.pot                         - 21         - 100.00%    - 
kmobile.pot                              - 61         - 100.00%    - 
kabc_slox.pot                            - 26         - 92.31%     - 
kres_exchange.pot                        - 10         - 100.00%    - 
kio_imap4.pot                            - 26         - 0.00%      - 
kres_remote.pot                          - 5          - 80.00%     - 
libcalendarresources.pot                 - 4          - 100.00%    - 
libkdepim.pot                            - 241        - 70.12%     - 
ksync.pot                                - 44         - 100.00%    - 
kfile_palm.pot                           - 18         - 100.00%    - 
libkleopatra.pot                         - 183        - 84.15%     - 
kmail_text_calendar_plugin.pot           - 9          - 88.89%     - 
korn.pot                                 - 114        - 99.12%     - 
kmailcvt.pot                             - 57         - 96.49%     - 
libkpgp.pot                              - 117        - 0.00%      - 
kmail.pot                                - 1925       - 95.43%     - 
kmail_text_vcard_plugin.pot              - 3          - 100.00%    - 
kfile_rfc822.pot                         - 6          - 100.00%    - 
kaddressbook.pot                         - 782        - 99.10%     - 
kres_xmlrpc.pot                          - 16         - 56.25%     - 
korganizer.pot                           - 1010       - 77.62%     - 
kwatchgnupg.pot                          - 32         - 100.00%    - 
kandy.pot                                - 94         - 100.00%    - 
alarmdaemonctrl.pot                      - 9          - 100.00%    - 
kpilot.pot                               - 1025       - 92.39%     - 
kfile_vcf.pot                            - 4          - 100.00%    - 
libkcalsystem.pot                        - 1          - 100.00%    - 
libkdenetwork.pot                        - 189        - 99.47%     - 
ktnef.pot                                - 175        - 98.86%     - 
knode.pot                                - 714        - 98.46%     - 
kio_sieve.pot                            - 29         - 100.00%    - 
libkpimexchange.pot                      - 7          - 100.00%    - 
kres_kolab.pot                           - 5          - 0.00%      - 
desktop_kdepim.pot                       - 356        - 86.80%     - 
kcmkabconfig.pot                         - 64         - 100.00%    - 
kres_imap.pot                            - 2          - 100.00%    - 
konsolekalendar.pot                      - 98         - 86.73%     - 
knotes.pot                               - 85         - 92.94%     - 
libkcal.pot                              - 258        - 40.70%     - 
kdepimwizards.pot                        - 59         - 81.36%     - 
kgantt.pot                               - 32         - 100.00%    - 
kontact.pot                              - 151        - 92.05%     - 
libkmime.pot                             - 10         - 0.00%      - 
kabc2mutt.pot                            - 8          - 100.00%    - 
kalarm.pot                               - 586        - 98.12%     - 
karm.pot                                 - 157        - 96.18%     - 
kleopatra.pot                            - 190        - 88.42%     - 
kfile_ics.pot                            - 7          - 0.00%      - 
kalarmdgui.pot                           - 40         - 100.00%    - 
libksieve.pot                            - 40         - 100.00%    - 
kcmkontactnt.pot                         - 24         - 95.83%     - 
kio_mobile.pot                           - 3          - 100.00%    - 
libksync.pot                             - 6          - 100.00%    - 
kdgantt.pot                              - 38         - 97.37%     - 

- Concluído: 89%


- Pacote: kdebase
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kio_nfs.pot                              - 5          - 100.00%    - 
kdebugdialog.pot                         - 18         - 100.00%    - 
naughtyapplet.pot                        - 10         - 100.00%    - 
kdesud.pot                               - 5          - 100.00%    - 
kcmcolors.pot                            - 59         - 98.31%     - 
kcmcrypto.pot                            - 175        - 100.00%    - 
kcmicons.pot                             - 48         - 100.00%    - 
useraccount.pot                          - 47         - 97.87%     - 
libkonq.pot                              - 65         - 96.92%     - 
kio_print.pot                            - 50         - 100.00%    - 
appletproxy.pot                          - 14         - 100.00%    - 
clockapplet.pot                          - 116        - 97.41%     - 
kwin_clients.pot                         - 53         - 45.28%     - 
nsplugin.pot                             - 15         - 100.00%    - 
kcmusb.pot                               - 72         - 100.00%    - 
kfontinst.pot                            - 113        - 98.23%     - 
libtaskbar.pot                           - 6          - 100.00%    - 
kmenuapplet.pot                          - 1          - 100.00%    - 
kio_smbro.pot                            - 12         - 100.00%    - 
kdeprintfax.pot                          - 95         - 100.00%    - 
kpartapp.pot                             - 11         - 100.00%    - 
kio_ldap.pot                             - 10         - 100.00%    - 
kcminfo.pot                              - 274        - 100.00%    - 
krandr.pot                               - 54         - 100.00%    - 
kcmperformance.pot                       - 24         - 70.83%     - 
kdesu.pot                                - 33         - 100.00%    - 
kcmcomponentchooser.pot                  - 34         - 100.00%    - 
kcmkio.pot                               - 292        - 100.00%    - 
kcmscreensaver.pot                       - 59         - 55.93%     - 
kcmkonq.pot                              - 115        - 100.00%    - 
kcmprintmgr.pot                          - 7          - 100.00%    - 
kstart.pot                               - 23         - 95.65%     - 
kdialog.pot                              - 37         - 91.89%     - 
libtaskmanager.pot                       - 15         - 100.00%    - 
kio_smb.pot                              - 17         - 100.00%    - 
kdepasswd.pot                            - 22         - 100.00%    -  <asergioz em bol.com.br>
kio_pop3.pot                             - 19         - 89.47%     - 
kcmsmartcard.pot                         - 31         - 100.00%    - 
kcmhtmlsearch.pot                        - 27         - 100.00%    - 
kcmenergy.pot                            - 13         - 100.00%    - 
kcmarts.pot                              - 69         - 94.20%     - 
ksplashthemes.pot                        - 27         - 96.30%     - 
kcmcgi.pot                               - 8          - 100.00%    - 
desktop_kdebase.pot                      - 1655       - 94.62%     - 
taskbarextension.pot                     - 10         - 100.00%    - 
kcmkclock.pot                            - 19         - 84.21%     - 
kio_floppy.pot                           - 10         - 100.00%    - 
kcminput.pot                             - 72         - 100.00%    - 
libkickermenu_kdeprint.pot               - 6          - 100.00%    - 
kcmaccessibility.pot                     - 50         - 100.00%    - 
ksmserver.pot                            - 11         - 100.00%    - 
filetypes.pot                            - 62         - 100.00%    - 
kcmtaskbar.pot                           - 42         - 64.29%     - 
kthememanager.pot                        - 42         - 100.00%    - 
libkickermenu_recentdocs.pot             - 2          - 100.00%    - 
kio_smtp.pot                             - 27         - 88.89%     - 
kwriteconfig.pot                         - 9          - 100.00%    - 
display.pot                              - 6          - 100.00%    - 
kasbarextension.pot                      - 99         - 97.98%     - 
kscreensaver.pot                         - 11         - 100.00%    - 
kcmxinerama.pot                          - 22         - 100.00%    - 
kpager.pot                               - 22         - 100.00%    - 
kdmchooser.pot                           - 11         - 100.00%    - 
kcmlocale.pot                            - 108        - 100.00%    - 
kcmbackground.pot                        - 108        - 100.00%    - 
kappfinder.pot                           - 14         - 100.00%    - 
kdmgreet.pot                             - 86         - 60.47%     - 
quicklauncher.pot                        - 12         - 100.00%    - 
passwords.pot                            - 16         - 100.00%    - 
klipper.pot                              - 66         - 100.00%    - 
kprinter.pot                             - 27         - 100.00%    - 
kcmkonqhtml.pot                          - 215        - 100.00%    - 
kdeprint_part.pot                        - 5          - 100.00%    - 
libkickermenu_prefmenu.pot               - 1          - 100.00%    - 
kcmview1394.pot                          - 19         - 89.47%     - 
kio_man.pot                              - 26         - 100.00%    - 
kio_mac.pot                              - 8          - 100.00%    - 
kcmbell.pot                              - 21         - 100.00%    - 
klegacyimport.pot                        - 19         - 100.00%    - 
khelpcenter.pot                          - 113        - 100.00%    - 
krdb.pot                                 - 1          - 100.00%    - 
devicesapplet.pot                        - 15         - 100.00%    - 
kcmnotify.pot                            - 9          - 100.00%    - 
kjobviewer.pot                           - 12         - 100.00%    - 
kcmsamba.pot                             - 59         - 100.00%    - 
kcmsocks.pot                             - 31         - 100.00%    - 
konsole.pot                              - 275        - 98.91%     - 
katedefaultproject.pot                   - 1          - 100.00%    - 
kcmstyle.pot                             - 76         - 100.00%    - 
kio_settings.pot                         - 4          - 75.00%     - 
childpanelextension.pot                  - 2          - 100.00%    - 
kcmkwm.pot                               - 145        - 99.31%     - 
kcmspellchecking.pot                     - 2          - 100.00%    - 
kcmkeys.pot                              - 162        - 100.00%    - 
libkicker.pot                            - 4          - 100.00%    - 
htmlsearch.pot                           - 11         - 100.00%    - 
joystick.pot                             - 41         - 100.00%    - 
kfile_font.pot                           - 36         - 100.00%    - 
khotkeys.pot                             - 135        - 100.00%    - 
kio_finger.pot                           - 4          - 100.00%    - 
konqueror.pot                            - 521        - 98.46%     - 
kio_sftp.pot                             - 43         - 97.67%     - 
privacy.pot                              - 64         - 96.88%     - 
kstyle_keramik_config.pot                - 2          - 100.00%    - 
ksystemtrayapplet.pot                    - 4          - 100.00%    - 
fontinst.pot                             - 151        - 100.00%    - 
kio_media.pot                            - 26         - 0.00%      - 
kcmkwinrules.pot                         - 112        - 100.00%    - 
kmenuedit.pot                            - 40         - 92.50%     - 
ktip.pot                                 - 77         - 94.81%     - 
kcmkurifilt.pot                          - 41         - 97.56%     - 
ksystraycmd.pot                          - 18         - 100.00%    - 
lockout.pot                              - 7          - 100.00%    - 
kdesktop.pot                             - 114        - 80.70%     - 
kfindpart.pot                            - 97         - 100.00%    - 
kcmkonsole.pot                           - 117        - 100.00%    - 
libkickermenu_tom.pot                    - 24         - 100.00%    - 
kcmsmserver.pot                          - 19         - 100.00%    - 
kfmclient.pot                            - 32         - 100.00%    - 
drkonqi.pot                              - 46         - 91.30%     - 
kcmkwindecoration.pot                    - 38         - 100.00%    - 
kcmkwintheme.pot                         - 1          - 100.00%    - 
kdmconfig.pot                            - 126        - 100.00%    - 
kcmlayout.pot                            - 219        - 100.00%    - 
kcmaccess.pot                            - 36         - 100.00%    - 
kicker.pot                               - 114        - 78.95%     - 
kwin.pot                                 - 129        - 96.90%     - 
kgreet_classic.pot                       - 8          - 100.00%    - 
kdcop.pot                                - 33         - 100.00%    - 
kio_nntp.pot                             - 5          - 100.00%    - 
ksysguard.pot                            - 345        - 99.71%     - 
ktaskbarapplet.pot                       - 13         - 100.00%    - 
kreadconfig.pot                          - 9          - 100.00%    - 
kcmioslaveinfo.pot                       - 8          - 100.00%    - 
kcmkicker.pot                            - 225        - 100.00%    - 
kcmemail.pot                             - 26         - 100.00%    - 
extensionproxy.pot                       - 8          - 100.00%    - 
kio_devices.pot                          - 30         - 70.00%     - 
kaccess.pot                              - 6          - 100.00%    - 
kcmnic.pot                               - 17         - 100.00%    - 
kio_fish.pot                             - 5          - 100.00%    - 
kcmfonts.pot                             - 39         - 100.00%    - 
ksplash.pot                              - 21         - 100.00%    - 
kxkb.pot                                 - 102        - 100.00%    - 
kcmlaunch.pot                            - 13         - 100.00%    - 
libkickermenu_konsole.pot                - 3          - 100.00%    - 
kcmmidi.pot                              - 2          - 100.00%    - 
kminipagerapplet.pot                     - 15         - 86.67%     - 
kpersonalizer.pot                        - 86         - 98.84%     - 
kcontrol.pot                             - 64         - 98.44%     - 
kate.pot                                 - 277        - 97.47%     - 
krunapplet.pot                           - 7          - 100.00%    - 
kcmcss.pot                               - 58         - 100.00%    - 
kio_trash.pot                            - 13         - 100.00%    - 
dockbarextension.pot                     - 6          - 100.00%    - 
kcmkded.pot                              - 22         - 100.00%    - 

- Concluído: 96%


- Pacote: kdeartwork
- Arquivos                               - Num. msgs  - Tradução   - Responsável
klock.pot                                - 280        - 99.29%     - 
kstyle_phase_config.pot                  - 8          - 0.00%      - 
kpartsaver.pot                           - 14         - 100.00%    - 
kwin_art_clients.pot                     - 47         - 0.00%      - 
desktop_kdeartwork.pot                   - 243        - 97.53%     - 
kxsconfig.pot                            - 849        - 100.00%    - 

- Concluído: 95%


- Pacote: kdeedu
- Arquivos                               - Num. msgs  - Tradução   - Responsável
klatin.pot                               - 157        - 89.17%     -  <asergioz em bol.com.br>
klettres.pot                             - 50         - 100.00%    - 
ktouch.pot                               - 211        - 51.66%     - 
desktop_kdeedu.pot                       - 70         - 98.57%     - 
khangman.pot                             - 114        - 69.30%     - 
kstars.pot                               - 4687       - 99.25%     - 
kwordquiz.pot                            - 333        - 91.89%     - 
kig.pot                                  - 870        - 91.38%     - 
kmathtool.pot                            - 48         - 100.00%    - 
kverbos.pot                              - 135        - 100.00%    -  <asergioz em bol.com.br>
kpercentage.pot                          - 68         - 95.59%     -  <asergioz em bol.com.br>
keduca.pot                               - 134        - 88.06%     - 
kfile_drgeo.pot                          - 10         - 80.00%     - 
kiten.pot                                - 144        - 97.22%     - 
kmplot.pot                               - 526        - 93.54%     -  <asergioz em bol.com.br>
kalzium.pot                              - 352        - 94.32%     - 
kturtle.pot                              - 140        - 62.86%     - 
kvoctrain.pot                            - 988        - 99.80%     - 
kbruch.pot                               - 103        - 96.12%     - 
kfile_kig.pot                            - 10         - 60.00%     - 
kmessedwords.pot                         - 66         - 100.00%    - 

- Concluído: 95%


- Pacote: kdeextragear-2
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kst.pot                                  - 1028       - 85.12%     - 
konversation.pot                         - 932        - 74.03%     - 
kfish.pot                                - 22         - 100.00%    - 
kcpuload.pot                             - 37         - 100.00%    - 
kstplugineditor.pot                      - 16         - 100.00%    - 
desktop_kdeextragear-2.pot               - 129        - 96.90%     - 
kimdaba.pot                              - 417        - 97.12%     - 
kmyfirewall.pot                          - 523        - 95.79%     - 
knetload.pot                             - 53         - 100.00%    - 
kmldonkey.pot                            - 552        - 96.74%     - 
kmplayer.pot                             - 244        - 99.59%     - 
showimg.pot                              - 516        - 63.57%     - 
kile.pot                                 - 926        - 71.71%     - 

- Concluído: 83%


- Pacote: kdegames
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kshisen.pot                              - 45         - 100.00%    - 
libkdegames.pot                          - 248        - 100.00%    - 
kolf.pot                                 - 139        - 100.00%    - 
kbounce.pot                              - 28         - 100.00%    - 
kenolaba.pot                             - 75         - 100.00%    - 
kfouleggs.pot                            - 25         - 100.00%    - 
kasteroids.pot                           - 31         - 100.00%    - 
ksirtet.pot                              - 30         - 100.00%    - 
ktron.pot                                - 77         - 100.00%    - 
kjumpingcube.pot                         - 38         - 100.00%    - 
kwin4.pot                                - 88         - 100.00%    - 
kmines.pot                               - 99         - 100.00%    - 
kmahjongg.pot                            - 109        - 100.00%    - 
desktop_kdegames.pot                     - 204        - 99.02%     - 
klickety.pot                             - 8          - 100.00%    - 
kblackbox.pot                            - 34         - 100.00%    - 
atlantik.pot                             - 138        - 94.20%     - 
lskat.pot                                - 104        - 100.00%    - 
libkdehighscores.pot                     - 72         - 100.00%    - 
kbattleship.pot                          - 113        - 100.00%    - 
libksirtet.pot                           - 110        - 98.18%     - 
katomic.pot                              - 103        - 100.00%    - 
kspaceduel.pot                           - 71         - 100.00%    - 
kpoker.pot                               - 72         - 91.67%     - 
ktuberling.pot                           - 55         - 100.00%    - 
konquest.pot                             - 75         - 98.67%     - 
ksame.pot                                - 23         - 100.00%    - 
ksnake.pot                               - 47         - 100.00%    - 
kgoldrunner.pot                          - 380        - 100.00%    - 
kreversi.pot                             - 72         - 72.22%     - 
ksokoban.pot                             - 36         - 100.00%    - 
ksmiletris.pot                           - 19         - 100.00%    - 
kpat.pot                                 - 69         - 100.00%    - 
kbackgammon.pot                          - 314        - 100.00%    - 
klines.pot                               - 49         - 100.00%    - 

- Concluído: 98%


- Pacote: kdeutils
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kcmlaptop.pot                            - 182        - 100.00%    - 
kwalletmanager.pot                       - 61         - 100.00%    - 
kfloppy.pot                              - 65         - 69.23%     -  <asergioz em bol.com.br>
irkick.pot                               - 18         - 100.00%    -  <gmcarvalho em yahoo.com>
ksim.pot                                 - 200        - 100.00%    -  <asergioz em bol.com.br>
kcharselectapplet.pot                    - 7          - 100.00%    - 
kmilo_generic.pot                        - 5          - 60.00%     - 
kedit.pot                                - 77         - 100.00%    -  <asergioz em bol.com.br>
kjots.pot                                - 58         - 100.00%    -  <asergioz em bol.com.br>
kcmkvaio.pot                             - 16         - 100.00%    - 
kmilo_powerbook.pot                      - 7          - 100.00%    - 
kmilo_thinkpad.pot                       - 24         - 62.50%     - 
kdessh.pot                               - 20         - 100.00%    - 
kcharselect.pot                          - 13         - 100.00%    -  <asergioz em bol.com.br>
klaptopdaemon.pot                        - 106        - 100.00%    -  <asergioz em bol.com.br>
kcalc.pot                                - 155        - 94.19%     -  <asergioz em bol.com.br>
kcmthinkpad.pot                          - 18         - 72.22%     - 
kregexpeditor.pot                        - 152        - 100.00%    -  <asergioz em bol.com.br>
kgpg.pot                                 - 537        - 96.09%     -  <marcus_gama em uol.com.br>
ark.pot                                  - 227        - 100.00%    -  <asergioz em bol.com.br>
kmilod.pot                               - 3          - 100.00%    - 
kcmkwallet.pot                           - 34         - 100.00%    -  <webmaster em lmfarma.com.br>
kdf.pot                                  - 50         - 98.00%     -  <asergioz em bol.com.br>
khexedit.pot                             - 435        - 100.00%    -  <asergioz em bol.com.br>
kcardchooser.pot                         - 24         - 100.00%    -  <asergioz em bol.com.br>
kmilo_kvaio.pot                          - 12         - 83.33%     - 
kdelirc.pot                              - 11         - 100.00%    - 
ktimer.pot                               - 19         - 100.00%    -  <asergioz em bol.com.br>
desktop_kdeutils.pot                     - 90         - 98.89%     -  <asergioz em bol.com.br>
kcmlirc.pot                              - 127        - 84.25%     - 

- Concluído: 96%


- Pacote: others
- Arquivos                               - Num. msgs  - Tradução   - Responsável
klog.pot                                 - 261        - 100.00%    -  <blackfirebird em globo.com>
kwebget.pot                              - 267        - 100.00%    -  <felipe em conectiva.com.br>
ksetiwatch.pot                           - 216        - 100.00%    -  <lisiane em conectiva.com.br>
kpp.pot                                  - 3          - 100.00%    -  <user9 em uol.com.br>
kssh.pot                                 - 96         - 100.00%    -  <gmcarvalho em yahoo.com>
knoda.pot                                - 588        - 99.83%     - 
knights.pot                              - 348        - 0.00%      - 
kdbg.pot                                 - 151        - 100.00%    - 

- Concluído: 81%


- Pacote: kdenetwork
- Arquivos                               - Num. msgs  - Tradução   - Responsável
krfb.pot                                 - 82         - 86.59%     - 
kio_lan.pot                              - 3          - 100.00%    - 
dcopservice.pot                          - 10         - 100.00%    - 
desktop_kdenetwork.pot                   - 220        - 96.82%     - 
kget.pot                                 - 249        - 100.00%    - 
kfileshare.pot                           - 735        - 99.73%     - 
kdict.pot                                - 156        - 100.00%    - 
kit.pot                                  - 195        - 100.00%    - 
kcmwifi.pot                              - 62         - 22.58%     - 
kpf.pot                                  - 84         - 100.00%    - 
kopete.pot                               - 2370       - 92.57%     - 
kxmlrpcd.pot                             - 6          - 100.00%    - 
kwireless.pot                            - 16         - 100.00%    - 
kfile_torrent.pot                        - 8          - 0.00%      - 
ktalkd.pot                               - 41         - 100.00%    - 
krdc.pot                                 - 154        - 100.00%    - 
kcmlanbrowser.pot                        - 96         - 100.00%    - 
kdictapplet.pot                          - 8          - 100.00%    - 
kcmktalkd.pot                            - 30         - 100.00%    - 
kinetd.pot                               - 2          - 100.00%    - 
knewsticker.pot                          - 248        - 100.00%    - 
kppplogview.pot                          - 55         - 100.00%    - 
kppp.pot                                 - 412        - 99.76%     - 
ksirc.pot                                - 374        - 100.00%    - 
kwifimanager.pot                         - 50         - 94.00%     - 
kcm_krfb.pot                             - 34         - 100.00%    - 
kcmkxmlrpcd.pot                          - 12         - 100.00%    - 

- Concluído: 95%


- Pacote: kdekiosk
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kcmbrhtmlview.pot                        - 2          - 100.00%    - 
desktop_kdekiosk.pot                     - 2          - 100.00%    - 
brpartview.pot                           - 5          - 100.00%    - 
kioske.pot                               - 4          - 100.00%    - 

- Concluído: 100%


- Pacote: kdeextragear-1
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kallers.pot                              - 66         - 100.00%    -  <asergioz em bol.com.br>
kfortune.pot                             - 24         - 100.00%    - 
libk3b.pot                               - 1001       - 0.00%      - 
gwenview.pot                             - 228        - 92.11%     - 
k3b.pot                                  - 1163       - 95.96%     - 
cdbakeoven.pot                           - 1100       - 100.00%    - 
desktop_kdeextragear-1.pot               - 110        - 95.45%     - 
kchat.pot                                - 280        - 100.00%    - 
k3bsetup.pot                             - 36         - 0.00%      - 
libk3bdevice.pot                         - 25         - 100.00%    - 
amarok.pot                               - 535        - 52.90%     -  <webmaster em lmfarma.com.br>
kdiff3.pot                               - 413        - 100.00%    - 
kreatecd.pot                             - 337        - 98.22%     - 
ksmssend.pot                             - 28         - 100.00%    - 

- Concluído: 74%


- Pacote: kdeaddons
- Arquivos                               - Num. msgs  - Tradução   - Responsável
domtreeviewer.pot                        - 16         - 100.00%    - 
alsaplayerui.pot                         - 21         - 100.00%    - 
jefferson.pot                            - 18         - 100.00%    - 
kbinaryclock.pot                         - 31         - 96.77%     - 
konqsidebar_mediaplayer.pot              - 4          - 100.00%    - 
ark_plugin.pot                           - 10         - 100.00%    - 
katepybrowse.pot                         - 8          - 100.00%    - 
katexmlcheck.pot                         - 9          - 88.89%     - 
webarchiver.pot                          - 22         - 100.00%    - 
atlantikdesigner.pot                     - 93         - 97.85%     - 
imgalleryplugin.pot                      - 44         - 100.00%    - 
kfile_desktop.pot                        - 13         - 100.00%    - 
kateinsertcommand.pot                    - 26         - 92.31%     - 
ktimemon.pot                             - 55         - 100.00%    - 
kolourpicker.pot                         - 10         - 100.00%    - 
konqsidebar_news.pot                     - 16         - 81.25%     - 
tippecanoe.pot                           - 3          - 100.00%    - 
katexmltools.pot                         - 14         - 100.00%    - 
mediacontrol.pot                         - 30         - 100.00%    - 
katefll_initplugin.pot                   - 8          - 75.00%     - 
searchbarplugin.pot                      - 5          - 80.00%     - 
ffrs.pot                                 - 9          - 100.00%    - 
wakeup.pot                               - 10         - 100.00%    - 
kfile_lnk.pot                            - 11         - 100.00%    - 
katehtmltools.pot                        - 3          - 100.00%    - 
katecppsymbolviewer.pot                  - 13         - 92.31%     - 
kateprojectmanager.pot                   - 13         - 100.00%    - 
rellinks.pot                             - 46         - 100.00%    - 
lyrics.pot                               - 30         - 100.00%    - 
minitoolsplugin.pot                      - 3          - 100.00%    - 
katefll_plugin.pot                       - 8          - 75.00%     - 
katemodeline.pot                         - 1          - 100.00%    - 
katetextfilter.pot                       - 5          - 60.00%     - 
nexscope.pot                             - 14         - 100.00%    - 
kcmkuick.pot                             - 12         - 100.00%    - 
wavecapture.pot                          - 2          - 100.00%    - 
autorefresh.pot                          - 12         - 100.00%    - 
babelfish.pot                            - 37         - 100.00%    - 
konq_smbmounterplugin.pot                - 7          - 100.00%    - 
kmathapplet.pot                          - 18         - 100.00%    - 
imagerename_plugin.pot                   - 5          - 100.00%    - 
kcmvim.pot                               - 38         - 100.00%    - 
dirfilterplugin.pot                      - 6          - 100.00%    - 
katespell.pot                            - 5          - 100.00%    - 
katehelloworld.pot                       - 1          - 100.00%    - 
audiorename_plugin.pot                   - 14         - 100.00%    - 
desktop_kdeaddons.pot                    - 152        - 95.39%     - 
kateopenheader.pot                       - 1          - 100.00%    - 
kuick_plugin.pot                         - 13         - 84.62%     - 
uachangerplugin.pot                      - 13         - 100.00%    - 
khtmlsettingsplugin.pot                  - 19         - 100.00%    - 
validatorsplugin.pot                     - 21         - 100.00%    - 
ksig.pot                                 - 16         - 100.00%    - 
katekjswrapper.pot                       - 6          - 66.67%     - 
kfile_html.pot                           - 5          - 100.00%    - 
synaescope.pot                           - 6          - 100.00%    - 
katemake.pot                             - 17         - 100.00%    - 
katefiletemplates.pot                    - 50         - 98.00%     - 
vimpart.pot                              - 35         - 100.00%    - 
katetabbarextension.pot                  - 3          - 66.67%     - 
libkaddrbk_geo_xxport.pot                - 2          - 100.00%    - 
crashesplugin.pot                        - 4          - 100.00%    - 
pitchablespeed.pot                       - 7          - 100.00%    - 
tyler.pot                                - 1          - 100.00%    - 
kfile_folder.pot                         - 3          - 100.00%    - 
dub.pot                                  - 29         - 100.00%    - 
charlatanui.pot                          - 6          - 100.00%    - 
kcmmediacontrol.pot                      - 16         - 100.00%    - 
fsview.pot                               - 67         - 100.00%    -  <asergioz em bol.com.br>
kfile_txt.pot                            - 9          - 100.00%    - 

- Concluído: 97%


- Pacote: kdeextragear-3
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kbluetoothd.pot                          - 122        - 62.30%     - 
krecipes.pot                             - 381        - 90.81%     - 
kbluetoothdcm.pot                        - 77         - 58.44%     - 
digikamimageplugin_emboss.pot            - 14         - 0.00%      - 
kdedcoptest.pot                          - 7          - 100.00%    - 
digikamimageplugin_charcoal.pot          - 15         - 0.00%      - 
kiosktool.pot                            - 232        - 90.52%     - 
digikamimageplugin_adjustlevels.pot      - 51         - 76.47%     - 
kbtserialchat.pot                        - 9          - 0.00%      - 
kbtsearch.pot                            - 8          - 0.00%      - 
klicker.pot                              - 21         - 100.00%    - 
kdetv.pot                                - 429        - 94.41%     - 
digikamimageplugin_solarize.pot          - 9          - 0.00%      - 
kbthandsfree.pot                         - 54         - 0.00%      - 
kbtobexclient.pot                        - 28         - 0.00%      - 
kioclient.pot                            - 29         - 0.00%      - 
desktop_kdeextragear-3.pot               - 174        - 80.46%     - 
digikamimageplugin_oilpaint.pot          - 16         - 0.00%      - 
libkbluetooth.pot                        - 18         - 0.00%      - 
digikamimageplugin_filmgrain.pot         - 14         - 0.00%      - 
digikamimageplugins.pot                  - 4          - 0.00%      - 
digikamimageplugin_raindrop.pot          - 20         - 0.00%      - 
keurocalc.pot                            - 105        - 100.00%    -  <user9 em uol.com.br>
kbluelock.pot                            - 7          - 100.00%    - 
digikam.pot                              - 520        - 60.00%     - 
kcmautostart.pot                         - 11         - 0.00%      - 
digikamimageplugin_unsharp.pot           - 18         - 0.00%      - 
khciconfig.pot                           - 5          - 100.00%    - 
digikamimageplugin_despeckle.pot         - 22         - 0.00%      - 
pwmanager.pot                            - 424        - 33.73%     - 

- Concluído: 65%


- Pacote: kdelibs
- Responsável:  <lisiane em conectiva.com.br>
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kfileaudiopreview.pot                    - 2          - 100.00%    - 
kio.pot                                  - 1118       - 99.11%     - 
ktexteditor_kdatatool.pot                - 3          - 100.00%    - 
kabc_dir.pot                             - 6          - 100.00%    - 
desktop_kdelibs.pot                      - 667        - 98.80%     - 
ktexteditor_insertfile.pot               - 7          - 100.00%    - 
kabcformat_binary.pot                    - 3          - 100.00%    - 
ktexteditor_isearch.pot                  - 24         - 100.00%    - 
kabc_ldap.pot                            - 31         - 100.00%    - 
kabc_file.pot                            - 6          - 100.00%    - 
kabc_sql.pot                             - 5          - 100.00%    - 
knotify.pot                              - 15         - 100.00%    - 
timezones.pot                            - 382        - 100.00%    - 
kdelibs_colors.pot                       - 223        - 100.00%    - 
cupsdconf.pot                            - 225        - 100.00%    - 
kabc_ldapkio.pot                         - 42         - 100.00%    - 
kdeprint.pot                             - 955        - 99.58%     - 
katepart.pot                             - 717        - 92.75%     - 
kdelibs.pot                              - 2013       - 96.67%     - 
desktop_kde-i18n.pot                     - 76         - 97.37%     - 
kio_help.pot                             - 25         - 96.00%     - 
ktexteditor_docwordcompletion.pot        - 12         - 100.00%    - 
kioexec.pot                              - 13         - 100.00%    - 
kmcop.pot                                - 5          - 100.00%    - 
ppdtranslations.pot                      - 2863       - 100.00%    - 
kstyle_plastik_config.pot                - 8          - 0.00%      - 
ktexteditor_autobookmarker.pot           - 26         - 100.00%    - 
libkscreensaver.pot                      - 4          - 100.00%    - 
kabc_net.pot                             - 6          - 100.00%    - 

- Concluído: 98%


- Pacote: www.kde.org
- Arquivos                               - Num. msgs  - Tradução   - Responsável
artist.pot                               - 0          - 0.00%      - 
events.pot                               - 0          - 0.00%      - 
download.pot                             - 0          - 0.00%      - 
foundation.pot                           - 0          - 0.00%      - 
food.pot                                 - 0          - 0.00%      - 
i18n-kdelnk.pot                          - 0          - 0.00%      - 
about.pot                                - 0          - 0.00%      - 
Bugs.pot                                 - 0          - 0.00%      - 
info.pot                                 - 0          - 0.00%      - 
people.pot                               - 0          - 0.00%      - 
gallery.pot                              - 0          - 0.00%      - 
history.pot                              - 0          - 0.00%      - 
SIGS.pot                                 - 0          - 0.00%      - 
credits.pot                              - 0          - 0.00%      - 
bulletin.pot                             - 0          - 0.00%      - 
awards.pot                               - 0          - 0.00%      - 
documentation.pot                        - 0          - 0.00%      - 
standards.pot                            - 0          - 0.00%      - 
announcements.pot                        - 0          - 0.00%      - 
areaswomen                               - 241        - 0.41%      - 
faq.pot                                  - 0          - 0.00%      - 
mirrors.pot                              - 0          - 0.00%      - 
family.pot                               - 0          - 0.00%      - 
helping.pot                              - 0          - 0.00%      - 
stuff.pot                                - 0          - 0.00%      - 
mailinglists.pot                         - 0          - 0.00%      - 
screenshots.pot                          - 0          - 0.00%      - 
docbook.pot                              - 0          - 0.00%      - 
support.pot                              - 0          - 0.00%      - 
DTD.pot                                  - 0          - 0.00%      - 
contact.pot                              - 0          - 0.00%      - 
docs.kde.org.pot                         - 0          - 0.00%      - 
media.pot                                - 69         - 0.00%      - 
whatiskde.pot                            - 0          - 0.00%      - 
jobs.pot                                 - 0          - 0.00%      - 
JornadaLinux2000.pot                     - 0          - 0.00%      - 
images.pot                               - 0          - 0.00%      - 

- Concluído: 0%


- Pacote: kdeaccessibility
- Arquivos                               - Num. msgs  - Tradução   - Responsável
desktop_kdeaccessibility.pot             - 11         - 100.00%    - 
kmousetool.pot                           - 26         - 100.00%    - 
kmouth.pot                               - 201        - 100.00%    - 
kmag.pot                                 - 70         - 100.00%    - 

- Concluído: 100%


- Pacote: kdeadmin
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kcmlilo.pot                              - 111        - 98.20%     -  <fernandoboaglio em yahoo.com.br>
kfile_deb.pot                            - 5          - 100.00%    -  <fernandoboaglio em yahoo.com.br>
kcron.pot                                - 157        - 100.00%    -  <fernandoboaglio em yahoo.com.br>
kpackage.pot                             - 248        - 97.98%     -  <fernandoboaglio em yahoo.com.br>
kfile_rpm.pot                            - 12         - 100.00%    -  <fernandoboaglio em yahoo.com.br>
kuser.pot                                - 351        - 91.74%     -  <fernandoboaglio em yahoo.com.br>
ksysv.pot                                - 158        - 99.37%     -  <fernandoboaglio em yahoo.com.br>
kcmlinuz.pot                             - 29         - 100.00%    -  <fernandoboaglio em yahoo.com.br>
desktop_kdeadmin.pot                     - 19         - 100.00%    -  <fernandoboaglio em yahoo.com.br>
secpolicy.pot                            - 6          - 100.00%    -  <fernandoboaglio em yahoo.com.br>
kdat.pot                                 - 242        - 100.00%    -  <fernandoboaglio em yahoo.com.br>

- Concluído: 97%





Documentação   -----------------------------------------------------------------



Total concluído: 55.70%

Coordenador: Marcus Gama (marcus_gama em uol.com.br)




- Pacote: kdesdk
- Arquivos                               - Num. msgs  - Tradução   - Responsável
umbrello_introduction.pot                - 14         - 100.00%    - 
kbabel_kbabeldict.pot                    - 11         - 100.00%    -  <marcus_gama em uol.com.br>
umbrello_uml_basics.pot                  - 156        - 100.00%    - 
kbugbuster.pot                           - 11         - 100.00%    -  <marcus_gama em uol.com.br>
kbabel_dictionaries.pot                  - 94         - 100.00%    -  <marcus_gama em uol.com.br>
kbabel_faq.pot                           - 7          - 100.00%    -  <marcus_gama em uol.com.br>
umbrello_other_features.pot              - 14         - 100.00%    - 
kbabel_preferences.pot                   - 189        - 100.00%    -  <marcus_gama em uol.com.br>
kbabel_glossary.pot                      - 33         - 100.00%    -  <marcus_gama em uol.com.br>
umbrello_credits.pot                     - 4          - 100.00%    - 
umbrello_code_import_and_generation.pot  - 33         - 100.00%    - 
cervisia.pot                             - 528        - 100.00%    -  <marcus_gama em uol.com.br>
kbabel_using.pot                         - 141        - 100.00%    -  <marcus_gama em uol.com.br>
kbabel.pot                               - 35         - 100.00%    -  <marcus_gama em uol.com.br>
kompare.pot                              - 11         - 100.00%    -  <marcus_gama em uol.com.br>
umbrello_authors.pot                     - 11         - 100.00%    - 
umbrello_working_with_umbrello.pot       - 99         - 100.00%    - 
kbabel_menu.pot                          - 278        - 100.00%    -  <marcus_gama em uol.com.br>
kcachegrind.pot                          - 175        - 100.00%    - 
umbrello.pot                             - 11         - 100.00%    - 
kbabel_catman.pot                        - 28         - 100.00%    -  <marcus_gama em uol.com.br>

- Concluído: 100%


- Pacote: koffice
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kpresenter.pot                           - 40         - 100.00%    -  <marcus_gama em uol.com.br>
kspread_importexport.pot                 - 24         - 100.00%    - 
kpresenter_screen.pot                    - 10         - 100.00%    -  <marcus_gama em uol.com.br>
kword_bookmarks.pot                      - 26         - 100.00%    -  <marcus_gama em uol.com.br>
kivio_introduction.pot                   - 11         - 100.00%    - 
kword_fundimentals.pot                   - 38         - 100.00%    -  <marcus_gama em uol.com.br>
kpresenter_guides.pot                    - 91         - 100.00%    -  <marcus_gama em uol.com.br>
kword_formatframes.pot                   - 139        - 100.00%    -  <marcus_gama em uol.com.br>
kword_techinfo.pot                       - 36         - 100.00%    -  <marcus_gama em uol.com.br>
kspread_configdialog.pot                 - 81         - 100.00%    - 
kspread_faq.pot                          - 8          - 100.00%    - 
kugar.pot                                - 32         - 100.00%    -  <marcus_gama em uol.com.br>
kword_headerfooter.pot                   - 20         - 100.00%    -  <marcus_gama em uol.com.br>
kugar_designer.pot                       - 84         - 100.00%    -  <marcus_gama em uol.com.br>
kugar_starting.pot                       - 11         - 100.00%    -  <marcus_gama em uol.com.br>
kspread_format.pot                       - 32         - 100.00%    - 
kivio_usage.pot                          - 90         - 100.00%    - 
kword_doclinks.pot                       - 28         - 100.00%    -  <marcus_gama em uol.com.br>
kugar_progguide.pot                      - 59         - 100.00%    -  <marcus_gama em uol.com.br>
kugar_template.pot                       - 104        - 100.00%    -  <marcus_gama em uol.com.br>
kivio_credits.pot                        - 16         - 100.00%    - 
kspread_advanced.pot                     - 128        - 100.00%    - 
kspread_config.pot                       - 21         - 100.00%    - 
thesaurus.pot                            - 35         - 100.00%    -  <marcus_gama em uol.com.br>
kspread_commands.pot                     - 266        - 100.00%    - 
kspread.pot                              - 41         - 100.00%    -  <marcus_gama em uol.com.br>
kword_pageformat.pot                     - 61         - 78.69%     -  <marcus_gama em uol.com.br>
kpresenter_tutorial.pot                  - 91         - 100.00%    -  <marcus_gama em uol.com.br>
koffice.pot                              - 125        - 100.00%    -  <marcus_gama em uol.com.br>
kchart.pot                               - 128        - 100.00%    -  <marcus_gama em uol.com.br>
kword_kparts.pot                         - 21         - 100.00%    -  <marcus_gama em uol.com.br>
kword_formatpara.pot                     - 98         - 100.00%    -  <marcus_gama em uol.com.br>
kpresenter_options.pot                   - 60         - 100.00%    -  <marcus_gama em uol.com.br>
kword_doccomments.pot                    - 23         - 100.00%    - 
kugar_tutorial.pot                       - 41         - 100.00%    -  <marcus_gama em uol.com.br>
kugar_templatedtd.pot                    - 7          - 100.00%    -  <marcus_gama em uol.com.br>
kword_tutorial.pot                       - 86         - 100.00%    -  <marcus_gama em uol.com.br>
kword_templatecreation.pot               - 38         - 100.00%    -  <marcus_gama em uol.com.br>
kword_lists.pot                          - 39         - 100.00%    -  <marcus_gama em uol.com.br>
kpresenter_faq.pot                       - 10         - 100.00%    -  <marcus_gama em uol.com.br>
kword_toc.pot                            - 32         - 100.00%    -  <marcus_gama em uol.com.br>
koshell.pot                              - 13         - 100.00%    -  <marcus_gama em uol.com.br>
kword_expressions.pot                    - 37         - 100.00%    -  <marcus_gama em uol.com.br>
kword_chapnumb.pot                       - 5          - 100.00%    -  <marcus_gama em uol.com.br>
kword_columns.pot                        - 15         - 100.00%    -  <marcus_gama em uol.com.br>
kspread_basics.pot                       - 108        - 100.00%    - 
kword_horizline.pot                      - 5          - 100.00%    - 
kword_storeprint.pot                     - 106        - 100.00%    -  <marcus_gama em uol.com.br>
kword_basics.pot                         - 48         - 100.00%    -  <marcus_gama em uol.com.br>
kword_footendnotes.pot                   - 57         - 100.00%    -  <marcus_gama em uol.com.br>
kword_formatchar.pot                     - 99         - 100.00%    -  <marcus_gama em uol.com.br>
kivio_working.pot                        - 82         - 100.00%    - 
kword_mailmerge.pot                      - 107        - 100.00%    -  <marcus_gama em uol.com.br>
kword_styles.pot                         - 102        - 100.00%    -  <marcus_gama em uol.com.br>
kword_mbtb.pot                           - 494        - 100.00%    -  <marcus_gama em uol.com.br>
kword_table.pot                          - 223        - 100.00%    -  <marcus_gama em uol.com.br>
kword_opt.pot                            - 148        - 100.00%    -  <marcus_gama em uol.com.br>
kword_tabstops.pot                       - 70         - 100.00%    -  <marcus_gama em uol.com.br>
kword.pot                                - 575        - 99.65%     -  <marcus_gama em uol.com.br>
kpresenter_great-presentations.pot       - 16         - 100.00%    -  <marcus_gama em uol.com.br>
kugar_datadtd.pot                        - 7          - 100.00%    -  <marcus_gama em uol.com.br>
kword_graphics.pot                       - 62         - 100.00%    -  <marcus_gama em uol.com.br>
kword_insertfile.pot                     - 9          - 100.00%    -  <marcus_gama em uol.com.br>
kpresenter_menus.pot                     - 308        - 100.00%    -  <marcus_gama em uol.com.br>
kword_migrating.pot                      - 5          - 100.00%    - 
kugar_dataref.pot                        - 18         - 100.00%    -  <marcus_gama em uol.com.br>
kivio.pot                                - 11         - 100.00%    - 
kword_frames.pot                         - 127        - 87.40%     -  <marcus_gama em uol.com.br>
kformula.pot                             - 238        - 100.00%    -  <marcus_gama em uol.com.br>
kword_editing.pot                        - 434        - 98.62%     -  <marcus_gama em uol.com.br>
kword_formulas.pot                       - 24         - 100.00%    -  <marcus_gama em uol.com.br>
kugar_template-elements.pot              - 214        - 100.00%    -  <marcus_gama em uol.com.br>
kword_docstruct.pot                      - 30         - 100.00%    -  <marcus_gama em uol.com.br>
kword_docvariables.pot                   - 215        - 100.00%    - 

- Concluído: 99%


- Pacote: kdenonbeta
- Arquivos                               - Num. msgs  - Tradução   - Responsável
userguide-tng_file-sharing.pot           - 13         - 0.00%      - 
userguide-tng_printing-from-apps.pot     - 3          - 0.00%      - 
kappdock.pot                             - 97         - 0.00%      - 
userguide-tng_networking-with-windows.pot - 2          - 0.00%      - 
userguide-tng_creating-graphics.pot      - 2          - 0.00%      - 
userguide-tng_konsole-intro.pot          - 5          - 0.00%      - 
userguide-tng_kde-edutainment.pot        - 11         - 0.00%      - 
userguide-tng_glossary.pot               - 2          - 0.00%      - 
userguide-tng_base-kde-applications.pot  - 2          - 0.00%      - 
userguide-tng_pdf-files.pot              - 3          - 0.00%      - 
userguide-tng_panel-and-desktop.pot      - 44         - 0.00%      - 
koncd.pot                                - 169        - 0.00%      - 
userguide-tng_removable-disks.pot        - 2          - 0.00%      - 
userguide-tng_kde-as-root.pot            - 2          - 0.00%      - 
userguide-tng_windows-how-to.pot         - 55         - 0.00%      - 
knu.pot                                  - 90         - 0.00%      - 
userguide-tng_where-next.pot             - 3          - 0.00%      - 
userguide-tng_net-connection-setup.pot   - 48         - 0.00%      - 
userguide-tng_control-center.pot         - 19         - 0.00%      - 
userguide-tng_your-kde-account.pot       - 4          - 0.00%      - 
karchiver.pot                            - 99         - 0.00%      - 
userguide-tng_standard-menu-entries.pot  - 46         - 0.00%      - 
userguide-tng_migrator-dictionary.pot    - 2          - 0.00%      - 
userguide-tng_shared-sessions.pot        - 2          - 0.00%      - 
userguide-tng_programs-controlling.pot   - 3          - 0.00%      - 
userguide-tng_browser-fine-tuning.pot    - 1          - 0.00%      - 
userguide-tng.pot                        - 49         - 0.00%      - 
userguide-tng_under-the-hood.pot         - 33         - 0.00%      - 
userguide-tng_usenet.pot                 - 38         - 0.00%      - 
userguide-tng_kde-for-admins.pot         - 492        - 0.00%      - 
userguide-tng_messaging-intro.pot        - 2          - 0.00%      - 
userguide-tng_credits-and-license.pot    - 9          - 0.00%      - 
userguide-tng_internet-shortcuts.pot     - 2          - 0.00%      - 
userguide-tng_programs-and-documents.pot - 32         - 0.00%      - 
userguide-tng_getting-help.pot           - 41         - 0.00%      - 
frontman.pot                             - 78         - 0.00%      - 
mathemagics.pot                          - 91         - 0.00%      - 
userguide-tng_font-installation.pot      - 3          - 0.00%      - 
kscore.pot                               - 83         - 0.00%      - 
kaphorism.pot                            - 12         - 0.00%      - 
userguide-tng_switching-sessions.pot     - 2          - 0.00%      - 
userguide-tng_email.pot                  - 31         - 0.00%      - 
kard.pot                                 - 71         - 0.00%      - 
userguide-tng_burning-cds.pot            - 2          - 0.00%      - 
konserve.pot                             - 148        - 0.00%      - 
userguide-tng_the-filemanager.pot        - 44         - 0.00%      - 
userguide-tng_printer-setup.pot          - 2          - 0.00%      - 
userguide-tng_screen-captures.pot        - 2          - 0.00%      - 
userguide-tng_troubleshooting-no-open.pot - 8          - 0.00%      - 
userguide-tng_playing-music.pot          - 26         - 0.00%      - 
userguide-tng_accessibility.pot          - 22         - 0.00%      - 
userguide-tng_playing-movies.pot         - 3          - 0.00%      - 

- Concluído: 0%


- Pacote: kdeextragear-libs-1
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kipi-plugins_jpeglossless.pot            - 13         - 0.00%      - 
kipi-plugins_wallpaper.pot               - 16         - 0.00%      - 
kipi-plugins_sendimages.pot              - 9          - 0.00%      - 
kipi-plugins_recompressimages.pot        - 13         - 0.00%      - 
kipi-plugins_rawconverter.pot            - 11         - 0.00%      - 
kipi-plugins_cdarchiving.pot             - 10         - 0.00%      - 
kipi-plugins_timeadjust.pot              - 5          - 0.00%      - 
kipi-plugins_effectimages.pot            - 21         - 0.00%      - 
kipi-plugins_convertimages.pot           - 15         - 0.00%      - 
kipi-plugins_calendar.pot                - 5          - 0.00%      - 
kipi-plugins_borderimages.pot            - 14         - 0.00%      - 
kipi-plugins_resizeimages.pot            - 13         - 0.00%      - 
kipi-plugins.pot                         - 37         - 0.00%      - 
kipi-plugins_colorimages.pot             - 21         - 0.00%      - 
kipi-plugins_printwizard.pot             - 9          - 0.00%      - 
kipi-plugins_filterimages.pot            - 19         - 0.00%      - 
kipi-plugins_kameraklient.pot            - 5          - 0.00%      - 
kipi-plugins_slideshow.pot               - 5          - 0.00%      - 
kipi-plugins_acquireimages.pot           - 11         - 0.00%      - 
kipi-plugins_findduplicateimages.pot     - 5          - 0.00%      - 
kipi-plugins_renameimages.pot            - 9          - 0.00%      - 
kipi-plugins_mpegencoder.pot             - 10         - 0.00%      - 
kipi-plugins_imagesgallery.pot           - 10         - 0.00%      - 

- Concluído: 0%


- Pacote: kdevelop
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kdevelop_app-menu.pot                    - 8          - 0.00%      - 
kdevelop_app-files.pot                   - 134        - 0.00%      - 
kdevelop_project-advanced.pot            - 13         - 0.00%      - 
kde_app_devel.pot                        - 304        - 0.00%      - 
kdevelop_project-management.pot          - 168        - 0.00%      - 
kdevelop_kdevelop-survey.pot             - 119        - 0.00%      - 
kdevelop.pot                             - 513        - 0.00%      - 
kdevelop_setup.pot                       - 402        - 0.00%      - 
kdearch.pot                              - 560        - 0.00%      - 
kdevelop_kdevelop-install.pot            - 197        - 0.00%      - 
kdevelop_unixdev.pot                     - 119        - 0.00%      - 
kdevelop_applicationwizard.pot           - 227        - 0.00%      - 

- Concluído: 0%


- Pacote: kdetoys
- Arquivos                               - Num. msgs  - Tradução   - Responsável
amor.pot                                 - 65         - 100.00%    - 
kweather.pot                             - 57         - 100.00%    - 
kworldclock.pot                          - 76         - 100.00%    - 
kmoon.pot                                - 28         - 100.00%    - 
kodo.pot                                 - 44         - 100.00%    - 
kteatime.pot                             - 37         - 100.00%    - 

- Concluído: 100%


- Pacote: kdegraphics
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kiconedit.pot                            - 175        - 0.00%      - 
kamera.pot                               - 11         - 100.00%    - 
kooka.pot                                - 119        - 0.00%      - 
ksnapshot.pot                            - 67         - 0.00%      - 
kruler.pot                               - 62         - 0.00%      - 
kview.pot                                - 193        - 0.00%      - 
kgamma.pot                               - 55         - 100.00%    - 
kpovmodeler.pot                          - 458        - 0.00%      - 
kuickshow.pot                            - 167        - 0.00%      - 
kdvi.pot                                 - 147        - 100.00%    - 
kolourpaint.pot                          - 210        - 0.00%      - 
kcoloredit.pot                           - 78         - 100.00%    - 
kpdf.pot                                 - 11         - 100.00%    - 
kghostview.pot                           - 121        - 100.00%    - 

- Concluído: 22%


- Pacote: kdemultimedia
- Arquivos                               - Num. msgs  - Tradução   - Responsável
artsbuilder_tools.pot                    - 137        - 100.00%    - 
artsbuilder_faq.pot                      - 196        - 100.00%    - 
kscd.pot                                 - 156        - 100.00%    - 
kcontrol_kmixcfg.pot                     - 15         - 100.00%    - 
artsbuilder_porting.pot                  - 8          - 100.00%    - 
artsbuilder.pot                          - 58         - 100.00%    - 
artsbuilder_detail.pot                   - 224        - 100.00%    - 
juk.pot                                  - 324        - 100.00%    - 
kmix.pot                                 - 134        - 100.00%    - 
artsbuilder_future.pot                   - 77         - 100.00%    - 
kmid.pot                                 - 247        - 0.00%      - 
noatun.pot                               - 109        - 100.00%    - 
artsbuilder_artsbuilder.pot              - 149        - 100.00%    - 
krec.pot                                 - 128        - 0.00%      - 
artsbuilder_glossary.pot                 - 30         - 100.00%    - 
artsbuilder_midiintro.pot                - 2          - 100.00%    - 
artsbuilder_modules.pot                  - 221        - 100.00%    - 
kaboodle.pot                             - 11         - 100.00%    - 
artsbuilder_gui.pot                      - 0          - 0.00%      - 
artsbuilder_helping.pot                  - 36         - 100.00%    - 
artsbuilder_midi.pot                     - 58         - 100.00%    - 
artsbuilder_references.pot               - 9          - 100.00%    - 
artsbuilder_apis.pot                     - 62         - 100.00%    - 
kio_audiocd_audiocd.pot                  - 40         - 100.00%    - 
artsbuilder_digitalaudio.pot             - 2          - 100.00%    - 
artsbuilder_mcop.pot                     - 345        - 100.00%    - 

- Concluído: 86%


- Pacote: kdewebdev
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kommander_extending.pot                  - 7          - 0.00%      - 
kommander_glossary.pot                   - 8          - 0.00%      - 
kxsldbg_variables.pot                    - 10         - 0.00%      - 
kommander_widgets.pot                    - 73         - 0.00%      - 
kommander.pot                            - 13         - 0.00%      - 
kommander_editor.pot                     - 124        - 0.00%      - 
quanta.pot                               - 51         - 100.00%    - 
kxsldbg_kxsldbg_inspector.pot            - 24         - 0.00%      - 
kxsldbg_entities.pot                     - 9          - 0.00%      - 
kxsldbg_kxsldbg_tools.pot                - 25         - 0.00%      - 
quanta_introduction.pot                  - 15         - 100.00%    - 
kxsldbg.pot                              - 19         - 0.00%      - 
kfilereplace.pot                         - 31         - 0.00%      - 
kommander_tutorials.pot                  - 19         - 0.00%      - 
quanta_glossary.pot                      - 13         - 100.00%    - 
quanta_quanta-projects.pot               - 126        - 100.00%    - 
quanta_q-and-a.pot                       - 8          - 100.00%    - 
kxsldbg_credits.pot                      - 11         - 0.00%      - 
kommander_credits.pot                    - 18         - 0.00%      - 
quanta_adv-quanta.pot                    - 56         - 100.00%    - 
kxsldbg_callstack.pot                    - 8          - 0.00%      - 
kxsldbg_kxsldbg_mainwindow.pot           - 26         - 0.00%      - 
quanta_fundamentals.pot                  - 59         - 100.00%    - 
quanta_config-quanta.pot                 - 2          - 100.00%    - 
kommander_dcop.pot                       - 47         - 0.00%      - 
kxsldbg_glossary.pot                     - 10         - 0.00%      - 
quanta_extending-quanta.pot              - 270        - 100.00%    - 
quanta_debugging-quanta.pot              - 10         - 100.00%    - 
kxsldbg_sources.pot                      - 9          - 0.00%      - 
quanta_working-with-quanta.pot           - 95         - 100.00%    - 
kommander_commands.pot                   - 5          - 0.00%      - 
quanta_quanta-menus.pot                  - 259        - 100.00%    - 
kommander_q-and-a.pot                    - 4          - 0.00%      - 
kommander_introduction.pot               - 15         - 0.00%      - 
klinkstatus.pot                          - 38         - 0.00%      - 
kxsldbg_kxsldbg_configure.pot            - 26         - 0.00%      - 
quanta_credits-license.pot               - 51         - 100.00%    - 
kxsldbg_templates.pot                    - 6          - 0.00%      - 
kommander_installation.pot               - 7          - 0.00%      - 
kommander_basics.pot                     - 24         - 0.00%      - 
kommander_specials.pot                   - 97         - 0.00%      - 
quanta_installation.pot                  - 8          - 100.00%    - 

- Concluído: 58%


- Pacote: kdepim
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kontact.pot                              - 163        - 0.00%      - 
kpilot_configuration.pot                 - 251        - 100.00%    - 
knode_commands.pot                       - 237        - 0.00%      - 
kwatchgnupg.pot                          - 50         - 100.00%    - 
knode_more.pot                           - 39         - 0.00%      - 
kmail_intro.pot                          - 12         - 100.00%    - 
kmail_importing.pot                      - 43         - 100.00%    - 
knode_install.pot                        - 13         - 0.00%      - 
kleopatra.pot                            - 273        - 97.44%     - 
knode_journey.pot                        - 120        - 0.00%      - 
korn.pot                                 - 58         - 0.00%      -  <mpacheco em mailbr.com.br>
kmail.pot                                - 25         - 100.00%    -  <MarcosG em Boticario.com.br> - 22/10/2003
knode_using-morefeatures.pot             - 156        - 0.00%      - 
kpilot_sync.pot                          - 67         - 100.00%    - 
kcontrol_kalarmd.pot                     - 18         - 100.00%    - 
kmail_using-kmail.pot                    - 408        - 100.00%    - 
kaddressbook.pot                         - 266        - 0.00%      - 
korganizer.pot                           - 674        - 0.00%      - 
korganizer_exchange-plugin.pot           - 64         - 0.00%      - 
kandy.pot                                - 63         - 0.00%      - 
knode_introduction.pot                   - 11         - 0.00%      - 
kpilot.pot                               - 42         - 100.00%    - 
knode_using-firststart.pot               - 367        - 0.00%      - 
knode_using-subscribing.pot              - 257        - 0.00%      - 
ktnef.pot                                - 18         - 0.00%      - 
knode.pot                                - 28         - 0.00%      - 
kmail_configure.pot                      - 282        - 99.65%     - 
knode_faq.pot                            - 32         - 0.00%      - 
kmail_faq.pot                            - 105        - 100.00%    - 
knode_gloss.pot                          - 58         - 0.00%      - 
konsolekalendar.pot                      - 206        - 0.00%      - 
knotes.pot                               - 102        - 0.00%      - 
knode_credits.pot                        - 16         - 0.00%      - 
korganizer_outlook-to-vcalendar.pot      - 57         - 0.00%      - 
kalarm.pot                               - 616        - 0.00%      - 
karm.pot                                 - 210        - 0.00%      - 
korganizer_group-scheduling.pot          - 78         - 0.00%      - 
kmail_menus.pot                          - 339        - 100.00%    - 
kmail_credits-and-licenses.pot           - 78         - 100.00%    - 
kpilot_usage.pot                         - 87         - 100.00%    - 
kmail_getting-started.pot                - 62         - 100.00%    - 
kpilot_faq.pot                           - 76         - 100.00%    - 

- Concluído: 36%


- Pacote: kdebase
- Arquivos                               - Num. msgs  - Tradução   - Responsável
khelpcenter_contact.pot                  - 40         - 100.00%    -  <marcus_gama em uol.com.br>
kdebugdialog.pot                         - 27         - 100.00%    - 
faq_misc.pot                             - 46         - 100.00%    - 
userguide_installation.pot               - 84         - 100.00%    - 
kioslave_imap.pot                        - 6          - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_mrml.pot                        - 6          - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_webdav.pot                      - 13         - 100.00%    -  <lisiane em conectiva.com.br>
userguide_history.pot                    - 32         - 100.00%    - 
kcontrol_kcmtaskbar.pot                  - 31         - 100.00%    - 
kcontrol_cookies.pot                     - 43         - 100.00%    - 
kdeprint_highlights.pot                  - 96         - 100.00%    - 
userguide_shortcuts.pot                  - 53         - 100.00%    - 
kcontrol_clock.pot                       - 19         - 100.00%    - 
konqueror_browser.pot                    - 79         - 100.00%    - 
konqueror_save-settings.pot              - 12         - 100.00%    - 
kcontrol_mouse.pot                       - 61         - 40.98%     - 
kcontrol_cache.pot                       - 14         - 100.00%    - 
konqueror_introduction.pot               - 9          - 100.00%    - 
kdeprint_extensions.pot                  - 10         - 100.00%    -  <127.o.o.1 em bol.com.br>
konqueror_basics.pot                     - 72         - 100.00%    - 
kate_fundamentals.pot                    - 119        - 100.00%    -  <lisiane em conectiva.com.br>
quickstart.pot                           - 203        - 100.00%    - 
kcontrol_background.pot                  - 85         - 100.00%    - 
kinfocenter_dma.pot                      - 16         - 100.00%    - 
kcontrol_arts_midi.pot                   - 6          - 100.00%    - 
khelpcenter_help.pot                     - 118        - 100.00%    -  <marcus_gama em uol.com.br>
kcontrol_desktop.pot                     - 26         - 100.00%    - 
kcontrol_proxy.pot                       - 38         - 100.00%    - 
kdesu.pot                                - 66         - 100.00%    - 
userguide_notices-trademarks.pot         - 29         - 100.00%    - 
ksysguard.pot                            - 109        - 100.00%    - 
userguide.pot                            - 8          - 100.00%    - 
kcontrol_kcmcss.pot                      - 54         - 100.00%    - 
kcontrol_panelappearance.pot             - 26         - 100.00%    - 
kioslave_ftp.pot                         - 9          - 100.00%    -  <lisiane em conectiva.com.br>
kate_part.pot                            - 114        - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_kcmsmserver.pot                 - 25         - 100.00%    - 
kcontrol_bell.pot                        - 21         - 100.00%    - 
kioslave_tar.pot                         - 5          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_kdm.pot                         - 126        - 100.00%    - 
kate_plugins.pot                         - 3          - 100.00%    -  <lisiane em conectiva.com.br>
kdeprint_getting-started.pot             - 21         - 100.00%    - 
kcontrol_screensaver.pot                 - 52         - 100.00%    - 
kcontrol_netpref.pot                     - 22         - 100.00%    - 
kcontrol_panel.pot                       - 53         - 100.00%    - 
faq_intro.pot                            - 17         - 100.00%    - 
kcontrol_kcmfontinst.pot                 - 18         - 100.00%    - 
faq_desktop.pot                          - 19         - 100.00%    - 
khelpcenter_whatiskde.pot                - 20         - 100.00%    -  <marcus_gama em uol.com.br>
kcontrol_kcmaccess.pot                   - 31         - 100.00%    - 
kioslave_pop3.pot                        - 4          - 100.00%    -  <lisiane em conectiva.com.br>
kdeprint_lpr-bsd.pot                     - 6          - 100.00%    -  <127.o.o.1 em bol.com.br>
kfind.pot                                - 73         - 100.00%    - 
konqueror_faq.pot                        - 31         - 100.00%    - 
kinfocenter_nics.pot                     - 10         - 100.00%    - 
kcontrol_windowmanagement.pot            - 110        - 100.00%    - 
kate_menus.pot                           - 161        - 100.00%    -  <lisiane em conectiva.com.br>
kioslave.pot                             - 2          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_colors.pot                      - 33         - 100.00%    - 
kcontrol_icons.pot                       - 49         - 100.00%    - 
faq_kdeapps.pot                          - 27         - 100.00%    - 
kioslave_cgi.pot                         - 5          - 100.00%    -  <lisiane em conectiva.com.br>
kinfocenter_scsi.pot                     - 15         - 100.00%    - 
kioslave_https.pot                       - 6          - 100.00%    -  <lisiane em conectiva.com.br>
faq_notrelated.pot                       - 33         - 100.00%    - 
kinfocenter_ioports.pot                  - 18         - 100.00%    - 
kcontrol_filetypes.pot                   - 86         - 100.00%    - 
kioslave_nfs.pot                         - 8          - 100.00%    -  <lisiane em conectiva.com.br>
kdeprint_tech-overview.pot               - 50         - 100.00%    - 
kate_regular-expressions.pot             - 167        - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_gzip.pot                        - 8          - 100.00%    -  <lisiane em conectiva.com.br>
faq.pot                                  - 16         - 100.00%    - 
userguide_ug-faq.pot                     - 17         - 100.00%    - 
kate_configuring.pot                     - 147        - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_thumbnail.pot                   - 7          - 100.00%    -  <lisiane em conectiva.com.br>
kdeprint.pot                             - 33         - 100.00%    -  <127.o.o.1 em bol.com.br>
kpager.pot                               - 80         - 100.00%    - 
faq_tips.pot                             - 21         - 100.00%    - 
kioslave_audiocd.pot                     - 35         - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_imaps.pot                       - 4          - 100.00%    -  <lisiane em conectiva.com.br>
kinfocenter_sound.pot                    - 14         - 100.00%    - 
kioslave_lan.pot                         - 6          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_energy.pot                      - 25         - 100.00%    - 
kcontrol_kcmnotify.pot                   - 26         - 100.00%    - 
kioslave_http.pot                        - 7          - 100.00%    -  <lisiane em conectiva.com.br>
kinfocenter_pcmcia.pot                   - 9          - 100.00%    - 
kcontrol_kcmlaunch.pot                   - 14         - 100.00%    - 
userguide_first-impressions.pot          - 74         - 100.00%    - 
kioslave_smb.pot                         - 13         - 100.00%    -  <lisiane em conectiva.com.br>
klipper.pot                              - 92         - 100.00%    - 
kioslave_news.pot                        - 5          - 100.00%    -  <lisiane em conectiva.com.br>
kxkb.pot                                 - 50         - 100.00%    - 
faq_contrib.pot                          - 33         - 100.00%    - 
kcontrol_kwindecoration.pot              - 22         - 100.00%    - 
kioslave_bzip.pot                        - 7          - 100.00%    -  <lisiane em conectiva.com.br>
faq_winmng.pot                           - 15         - 100.00%    - 
kioslave_smtp.pot                        - 5          - 100.00%    -  <lisiane em conectiva.com.br>
khelpcenter.pot                          - 11         - 100.00%    -  <marcus_gama em uol.com.br>
kcontrol_khtml_nsplugin.pot              - 15         - 100.00%    - 
kate_advanced.pot                        - 49         - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_mac.pot                         - 9          - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_info.pot                        - 9          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_email.pot                       - 24         - 100.00%    - 
glossary.pot                             - 73         - 100.00%    - 
kinfocenter.pot                          - 78         - 100.00%    - 
kioslave_mailto.pot                      - 5          - 100.00%    -  <lisiane em conectiva.com.br>
userguide_getting-started.pot            - 81         - 100.00%    - 
kinfocenter_pci.pot                      - 15         - 100.00%    - 
kioslave_rlan.pot                        - 4          - 100.00%    -  <lisiane em conectiva.com.br>
kdeprint_lprng.pot                       - 2          - 100.00%    -  <127.o.o.1 em bol.com.br>
faq_install.pot                          - 138        - 100.00%    - 
kcontrol_smb.pot                         - 16         - 100.00%    - 
kinfocenter_partitions.pot               - 15         - 100.00%    - 
kioslave_gopher.pot                      - 7          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_kcmstyle.pot                    - 45         - 100.00%    - 
glossary_kdeprintingglossary.pot         - 184        - 100.00%    - 
kdeprint_add-printer-wiz.pot             - 55         - 100.00%    -  <127.o.o.1 em bol.com.br>
kioslave_print.pot                       - 33         - 100.00%    -  <lisiane em conectiva.com.br>
kinfocenter_devices.pot                  - 14         - 100.00%    - 
faq_filemng.pot                          - 38         - 100.00%    - 
kinfocenter_protocols.pot                - 9          - 100.00%    - 
userguide_about-desktop.pot              - 77         - 100.00%    - 
konqueror_commands.pot                   - 231        - 100.00%    - 
konqueror_path-complete.pot              - 17         - 100.00%    - 
konqueror.pot                            - 19         - 100.00%    - 
kioslave_telnet.pot                      - 5          - 100.00%    -  <lisiane em conectiva.com.br>
kdm.pot                                  - 276        - 100.00%    - 
khelpcenter_welcome.pot                  - 19         - 100.00%    -  <marcus_gama em uol.com.br>
konqueror_config.pot                     - 25         - 100.00%    - 
konqueror_sidebar.pot                    - 43         - 100.00%    - 
kate_highlighting.pot                    - 120        - 100.00%    -  <lisiane em conectiva.com.br>
kdeprint_cups-config.pot                 - 420        - 100.00%    - 
kcontrol_desktopbehavior.pot             - 41         - 100.00%    - 
kinfocenter_xserver.pot                  - 13         - 100.00%    - 
kioslave_bzip2.pot                       - 8          - 100.00%    -  <lisiane em conectiva.com.br>
kmenuedit.pot                            - 85         - 100.00%    - 
kdeprint_theory.pot                      - 101        - 100.00%    - 
kdeprint_cupsoptions.pot                 - 111        - 100.00%    - 
visualdict.pot                           - 40         - 100.00%    - 
kcontrol_passwords.pot                   - 15         - 100.00%    - 
kcontrol_arts.pot                        - 53         - 100.00%    - 
kioslave_finger.pot                      - 10         - 100.00%    -  <lisiane em conectiva.com.br>
kinfocenter_memory.pot                   - 25         - 100.00%    - 
konqueror_bookmarks.pot                  - 21         - 100.00%    - 
kinfocenter_usb.pot                      - 8          - 100.00%    - 
kcontrol_spellchecking.pot               - 17         - 100.00%    - 
konqueror_plugins.pot                    - 33         - 100.00%    - 
kcontrol_ebrowsing.pot                   - 26         - 100.00%    - 
kcontrol_language.pot                    - 60         - 100.00%    - 
kcontrol_keyboard.pot                    - 18         - 100.00%    - 
kdeprint_external-command.pot            - 6          - 100.00%    -  <127.o.o.1 em bol.com.br>
kioslave_fish.pot                        - 7          - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_rlogin.pot                      - 9          - 100.00%    -  <lisiane em conectiva.com.br>
kdeprint_lpd.pot                         - 4          - 100.00%    -  <127.o.o.1 em bol.com.br>
kwrite.pot                               - 276        - 100.00%    - 
konqueror_credits.pot                    - 55         - 100.00%    - 
kcontrol_useragent.pot                   - 23         - 100.00%    - 
userguide_more-help.pot                  - 11         - 100.00%    - 
kioslave_pop3s.pot                       - 4          - 100.00%    -  <lisiane em conectiva.com.br>
kicker.pot                               - 364        - 100.00%    -  <asergioz em bol.com.br>
ksplashml.pot                            - 233        - 100.00%    - 
faq_about.pot                            - 8          - 100.00%    - 
kioslave_man.pot                         - 12         - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_khtml.pot                       - 54         - 100.00%    - 
kate_mdi.pot                             - 59         - 100.00%    -  <lisiane em conectiva.com.br>
faq_getkde.pot                           - 16         - 100.00%    - 
kcontrol_helpindex.pot                   - 27         - 100.00%    - 
kioslave_ldap.pot                        - 7          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_kcmkonsole.pot                  - 27         - 100.00%    - 
kioslave_help.pot                        - 5          - 100.00%    -  <lisiane em conectiva.com.br>
khelpcenter_support.pot                  - 19         - 100.00%    -  <marcus_gama em uol.com.br>
kdm_kdmrc-ref.pot                        - 455        - 100.00%    - 
kdeprint_final-word.pot                  - 20         - 100.00%    - 
konqueror_filemanager.pot                - 165        - 100.00%    - 
kioslave_webdavs.pot                     - 4          - 100.00%    -  <lisiane em conectiva.com.br>
kioslave_floppy.pot                      - 11         - 100.00%    -  <lisiane em conectiva.com.br>
kinfocenter_processor.pot                - 16         - 100.00%    - 
faq_panel.pot                            - 8          - 100.00%    - 
kinfocenter_interrupts.pot               - 19         - 100.00%    - 
faq_nonkdeapps.pot                       - 5          - 100.00%    - 
kinfocenter_samba.pot                    - 47         - 100.00%    - 
kinfocenter_opengl.pot                   - 12         - 100.00%    - 
kioslave_nntp.pot                        - 10         - 100.00%    -  <lisiane em conectiva.com.br>
konsole.pot                              - 285        - 100.00%    - 
kioslave_file.pot                        - 5          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_fonts.pot                       - 25         - 100.00%    - 
kioslave_sftp.pot                        - 5          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_keys.pot                        - 36         - 100.00%    - 
kcontrol.pot                             - 101        - 100.00%    - 
kate.pot                                 - 83         - 100.00%    -  <lisiane em conectiva.com.br>
userguide_intro.pot                      - 6          - 100.00%    - 
faq_moreinfo.pot                         - 34         - 100.00%    - 
kdeprint_rlpr.pot                        - 4          - 100.00%    -  <127.o.o.1 em bol.com.br>
faq_configkde.pot                        - 37         - 100.00%    - 
kioslave_data.pot                        - 8          - 100.00%    -  <lisiane em conectiva.com.br>
kcontrol_crypto.pot                      - 49         - 100.00%    - 
userguide_staff.pot                      - 30         - 100.00%    - 
kcontrol_proxy_socks.pot                 - 12         - 100.00%    - 
kcontrol_filemanager.pot                 - 62         - 100.00%    - 

- Concluído: 99%


- Pacote: kdeedu
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kstars_calc-geodetic.pot                 - 8          - 100.00%    - 
kstars_retrograde.pot                    - 7          - 100.00%    - 
kstars_spiralgalaxies.pot                - 19         - 100.00%    - 
khangman.pot                             - 190        - 0.00%      - 
kstars_parallax.pot                      - 10         - 100.00%    - 
kstars_calc-ecliptic.pot                 - 8          - 100.00%    - 
keduca.pot                               - 55         - 100.00%    - 
kstars_ellipticalgalaxies.pot            - 18         - 100.00%    - 
kstars_stars.pot                         - 19         - 100.00%    - 
kstars_luminosity.pot                    - 10         - 100.00%    - 
kturtle_programming-reference.pot        - 167        - 0.00%      - 
kstars_flux.pot                          - 11         - 100.00%    - 
kstars_sidereal.pot                      - 13         - 100.00%    - 
klatin_pronouns.pot                      - 86         - 0.00%      - 
kpercentage_using.pot                    - 17         - 0.00%      - 
kstars_geocoords.pot                     - 13         - 100.00%    - 
kstars_calculator.pot                    - 21         - 100.00%    - 
kstars_solarsys.pot                      - 7          - 100.00%    - 
kturtle_getting-started.pot              - 30         - 0.00%      - 
kstars_calc-apcoords.pot                 - 8          - 100.00%    - 
kpercentage_introduction.pot             - 3          - 0.00%      - 
kstars_calc-equinox.pot                  - 8          - 100.00%    - 
kmplot_firststeps.pot                    - 12         - 0.00%      - 
kpercentage_devel.pot                    - 2          - 0.00%      - 
kstars_dumpmode.pot                      - 8          - 100.00%    - 
klatin.pot                               - 101        - 0.00%      - 
kstars_credits.pot                       - 21         - 100.00%    - 
kstars_ecliptic.pot                      - 9          - 100.00%    - 
kstars_skycoords.pot                     - 32         - 100.00%    - 
kpercentage_credits.pot                  - 11         - 0.00%      - 
kstars_horizon.pot                       - 6          - 100.00%    - 
kstars_astroinfo.pot                     - 4          - 100.00%    - 
kstars_meridian.pot                      - 6          - 100.00%    - 
kstars_scriptbuilder.pot                 - 22         - 100.00%    - 
kstars_greatcircle.pot                   - 6          - 100.00%    - 
kstars_calc-sidereal.pot                 - 7          - 100.00%    - 
kturtle_translator-guide.pot             - 24         - 0.00%      - 
kmathtool.pot                            - 11         - 0.00%      - 
kstars_jmoons.pot                        - 7          - 100.00%    - 
kstars_wut.pot                           - 9          - 100.00%    - 
klettres.pot                             - 125        - 0.00%      - 
kstars_calc-angdist.pot                  - 9          - 100.00%    - 
kwordquiz.pot                            - 253        - 0.00%      - 
kstars_faq.pot                           - 36         - 100.00%    - 
ktouch.pot                               - 74         - 0.00%      - 
kiten.pot                                - 106        - 0.00%      - 
kstars_colorandtemp.pot                  - 23         - 100.00%    - 
kturtle.pot                              - 54         - 0.00%      - 
kstars_hourangle.pot                     - 7          - 100.00%    - 
kstars_calc-planetcoords.pot             - 8          - 100.00%    - 
kmplot_developer.pot                     - 2          - 0.00%      - 
kstars_details.pot                       - 21         - 100.00%    - 
kpercentage_commands.pot                 - 11         - 0.00%      - 
kstars_blackbody.pot                     - 20         - 100.00%    - 
kstars_csphere.pot                       - 7          - 100.00%    - 
kstars_commands.pot                      - 233        - 100.00%    - 
kverbos.pot                              - 161        - 0.00%      -  <turmawb em yahoo.com.br>
kmplot_configuration.pot                 - 40         - 0.00%      - 
kstars_dcop.pot                          - 29         - 100.00%    - 
kstars_calc-julianday.pot                - 10         - 100.00%    - 
kstars_darkmatter.pot                    - 14         - 100.00%    - 
kmplot_menu.pot                          - 28         - 0.00%      - 
kmplot_using.pot                         - 52         - 0.00%      - 
kstars_config.pot                        - 71         - 100.00%    - 
klatin_numbers.pot                       - 123        - 0.00%      - 
kmplot_reference.pot                     - 51         - 0.00%      - 
kstars_equinox.pot                       - 7          - 100.00%    - 
kstars_quicktour.pot                     - 54         - 100.00%    - 
kstars_leapyear.pot                      - 9          - 100.00%    - 
kpercentage_faq.pot                      - 4          - 0.00%      - 
kig.pot                                  - 156        - 0.00%      - 
kstars_lightcurves.pot                   - 30         - 100.00%    - 
kmplot.pot                               - 15         - 0.00%      - 
kvoctrain.pot                            - 690        - 0.00%      -  <turmawb em yahoo.com.br>
kstars_install.pot                       - 25         - 100.00%    - 
kmplot_install.pot                       - 3          - 0.00%      - 
kpercentage_install.pot                  - 3          - 0.00%      - 
kbruch.pot                               - 120        - 0.00%      - 
kstars_magnitude.pot                     - 14         - 100.00%    - 
kstars_calc-precess.pot                  - 8          - 100.00%    - 
klatin_nouns.pot                         - 73         - 0.00%      - 
kmplot_credits.pot                       - 12         - 0.00%      - 
kstars.pot                               - 33         - 100.00%    - 
kstars_tools.pot                         - 12         - 100.00%    - 
kmessedwords.pot                         - 82         - 0.00%      - 
kstars_ai-contents.pot                   - 34         - 100.00%    - 
kstars_utime.pot                         - 10         - 100.00%    - 
kstars_cpoles.pot                        - 11         - 100.00%    - 
kmplot_introduction.pot                  - 6          - 0.00%      - 
kmplot_commands.pot                      - 73         - 0.00%      - 
kstars_calc-eqgal.pot                    - 7          - 100.00%    - 
kstars_timezones.pot                     - 6          - 100.00%    - 
kturtle_using-kturtle.pot                - 103        - 0.00%      - 
kalzium.pot                              - 149        - 0.00%      - 
klatin_verbs.pot                         - 527        - 0.00%      - 
kstars_altvstime.pot                     - 12         - 100.00%    - 
kturtle_glossary.pot                     - 73         - 0.00%      - 
kstars_calc-dayduration.pot              - 7          - 100.00%    - 
kstars_cequator.pot                      - 6          - 100.00%    - 
kstars_julianday.pot                     - 11         - 100.00%    - 
kpercentage.pot                          - 15         - 0.00%      - 
kstars_precession.pot                    - 9          - 100.00%    - 
kstars_zenith.pot                        - 8          - 100.00%    - 
kstars_calc-horizontal.pot               - 7          - 100.00%    - 
klatin_adjectives.pot                    - 51         - 0.00%      - 
kstars_indi.pot                          - 180        - 100.00%    - 

- Concluído: 25%


- Pacote: kdeextragear-2
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kst_license-chapter.pot                  - 2          - 0.00%      - 
kst_creatingplugins-chapter.pot          - 111        - 0.00%      - 
knetload.pot                             - 57         - 0.00%      - 
kst_eventmonitoring-chapter.pot          - 57         - 0.00%      - 
kst_install-chapter.pot                  - 31         - 0.00%      - 
kimdaba_viewer.pot                       - 16         - 0.00%      - 
kst_plugins-chapter.pot                  - 218        - 0.00%      - 
kst_debuglog-chapter.pot                 - 48         - 0.00%      - 
kimdaba_thumbnail-view.pot               - 26         - 0.00%      - 
kst_saving-chapter.pot                   - 30         - 0.00%      - 
kst_miscfeatures-chapter.pot             - 43         - 0.00%      - 
showimg.pot                              - 174        - 0.00%      - 
kimdaba_introduction.pot                 - 13         - 0.00%      - 
kimdaba_generating-html.pot              - 22         - 0.00%      - 
kmldonkey.pot                            - 20         - 0.00%      - 
konversation.pot                         - 502        - 0.00%      - 
kimdaba_importexport.pot                 - 16         - 0.00%      - 
kimdaba_browsing.pot                     - 22         - 0.00%      - 
kst_commandline-chapter.pot              - 50         - 0.00%      - 
kmyfirewall.pot                          - 194        - 0.00%      - 
kst_additionalformats-chapter.pot        - 64         - 0.00%      - 
kimdaba_plugins.pot                      - 11         - 0.00%      - 
kst_tutorial_tutorial.pot                - 160        - 0.00%      - 
kcpuload.pot                             - 57         - 100.00%    - 
kile.pot                                 - 418        - 0.00%      - 
kimdaba.pot                              - 17         - 0.00%      - 
kst_data-chapter.pot                     - 241        - 0.00%      - 
kst_plotsandwindows-chapter.pot          - 306        - 0.00%      - 
kst_dcop-chapter.pot                     - 2          - 0.00%      - 
kst_intro-chapter.pot                    - 28         - 0.00%      - 
kimdaba_options.pot                      - 20         - 0.00%      - 
kst.pot                                  - 12         - 0.00%      - 
kmplayer.pot                             - 25         - 0.00%      - 
kimdaba_setting-properties.pot           - 26         - 0.00%      - 

- Concluído: 1%


- Pacote: kdegames
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kshisen.pot                              - 85         - 0.00%      - 
kolf.pot                                 - 228        - 0.00%      - 
kbounce.pot                              - 67         - 100.00%    -  <fernando.conceicao em terra.com.br>
kenolaba.pot                             - 150        - 0.00%      - 
kfouleggs.pot                            - 143        - 0.00%      -  <fernando.conceicao em terra.com.br>
kasteroids.pot                           - 80         - 100.00%    -  <fernando.conceicao em terra.com.br>
ktuberling_technical-reference.pot       - 51         - 0.00%      - 
ksirtet.pot                              - 95         - 0.00%      - 
ktron.pot                                - 135        - 0.00%      - 
kjumpingcube.pot                         - 91         - 0.00%      -  <fernando.conceicao em terra.com.br>
kwin4.pot                                - 88         - 0.00%      - 
kpat_man.pot                             - 93         - 0.00%      - 
kmines.pot                               - 161        - 0.00%      - 
klickety.pot                             - 11         - 0.00%      - 
kblackbox.pot                            - 101        - 100.00%    -  <fernando.conceicao em terra.com.br>
atlantik.pot                             - 38         - 94.74%     -  <fernando.conceicao em terra.com.br>
lskat.pot                                - 113        - 0.00%      - 
kbattleship.pot                          - 86         - 100.00%    -  <fernando.conceicao em terra.com.br>
katomic.pot                              - 79         - 100.00%    -  <fernando.conceicao em terra.com.br>
kspaceduel.pot                           - 213        - 100.00%    - 
kpoker.pot                               - 177        - 0.00%      - 
ktuberling.pot                           - 140        - 0.00%      - 
konquest.pot                             - 48         - 100.00%    - 
ksame.pot                                - 58         - 0.00%      - 
ksnake.pot                               - 78         - 0.00%      - 
kgoldrunner.pot                          - 285        - 0.00%      - 
kreversi.pot                             - 114        - 100.00%    - 
ksokoban.pot                             - 112        - 0.00%      - 
kpat.pot                                 - 164        - 0.00%      - 
kbackgammon.pot                          - 116        - 0.00%      -  <fernando.conceicao em terra.com.br>
klines.pot                               - 67         - 0.00%      -  <fernando.conceicao em terra.com.br>

- Concluído: 23%


- Pacote: kdeutils
- Arquivos                               - Num. msgs  - Tradução   - Responsável
khexedit.pot                             - 245        - 100.00%    - 
KRegExpEditor.pot                        - 106        - 100.00%    - 
kgpg.pot                                 - 65         - 100.00%    - 
ksim.pot                                 - 12         - 100.00%    - 
kcalc.pot                                - 216        - 100.00%    - 
ark.pot                                  - 157        - 100.00%    - 
kwallet.pot                              - 74         - 100.00%    - 
kdelirc_irkick.pot                       - 25         - 100.00%    - 
kinfocenter_blockdevices.pot             - 22         - 100.00%    - 
kcontrol_powerctrl.pot                   - 22         - 100.00%    - 
kfloppy.pot                              - 86         - 100.00%    - 
ktimer.pot                               - 12         - 100.00%    - 
kdelirc_kcmlirc.pot                      - 34         - 100.00%    - 
kcontrol_kcmlowbatcrit.pot               - 13         - 100.00%    - 
kcharselect.pot                          - 12         - 100.00%    - 
kdf.pot                                  - 60         - 100.00%    - 
kcontrol_kcmlowbatwarn.pot               - 28         - 100.00%    - 
kedit.pot                                - 243        - 100.00%    - 
kcontrol_laptop.pot                      - 30         - 100.00%    - 
kjots.pot                                - 108        - 60.19%     - 

- Concluído: 97%


- Pacote: others
- Arquivos                               - Num. msgs  - Tradução   - Responsável
ksetiwatch.pot                           - 308        - 0.00%      - 

- Concluído: 0%


- Pacote: kdenetwork
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kget.pot                                 - 119        - 0.00%      - 
kppp_accounting.pot                      - 4          - 100.00%    - 
kcontrol_lanbrowser.pot                  - 2          - 100.00%    - 
kdict.pot                                - 235        - 0.00%      - 
kppp_tricks.pot                          - 30         - 100.00%    - 
kpf.pot                                  - 57         - 0.00%      - 
kopete.pot                               - 369        - 100.00%    - 
kppp_security.pot                        - 19         - 100.00%    -  <marcelosf em altavista.net>
kppp_global-settings.pot                 - 82         - 100.00%    -  <marcelosf em altavista.net>
krfb.pot                                 - 91         - 0.00%      - 
ktalkd.pot                               - 111        - 0.00%      - 
kppp_getting-online.pot                  - 15         - 100.00%    - 
krdc.pot                                 - 118        - 0.00%      - 
kppp_callback.pot                        - 48         - 100.00%    - 
kopete_menus.pot                         - 124        - 100.00%    - 
kwifimanager.pot                         - 101        - 0.00%      - 
kppp_chap.pot                            - 40         - 100.00%    - 
kppp_kppp-faq.pot                        - 92         - 100.00%    -  <marcelosf em altavista.net>
kppp_hayes.pot                           - 366        - 100.00%    - 
knewsticker.pot                          - 293        - 0.00%      - 
lisa.pot                                 - 140        - 100.00%    - 
kppp.pot                                 - 53         - 100.00%    -  <marcelosf em altavista.net>
ksirc.pot                                - 248        - 0.00%      -  <mpacheco em mailbr.com.br>
kcontrol_kcmktalkd.pot                   - 12         - 100.00%    - 
kppp_wizard.pot                          - 28         - 100.00%    - 
kppp_dialog-setup.pot                    - 161        - 100.00%    - 

- Concluído: 53%


- Pacote: kdeextragear-1
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kfortune.pot                             - 87         - 0.00%      - 
k3b_commands.pot                         - 44         - 100.00%    - 
amarok_advanced.pot                      - 160        - 0.00%      - 
gwenview.pot                             - 19         - 0.00%      - 
amarok_config.pot                        - 58         - 0.00%      - 
k3b_audiocd-howto.pot                    - 16         - 100.00%    - 
amarok_howto.pot                         - 2          - 0.00%      - 
amarok_plugin.pot                        - 2          - 0.00%      - 
amarok_develop.pot                       - 56         - 0.00%      - 
amarok_using.pot                         - 113        - 0.00%      - 
k3b_dcop.pot                             - 25         - 100.00%    - 
k3b_video-encoding.pot                   - 19         - 100.00%    - 
kdiff3.pot                               - 478        - 0.00%      - 
amarok_requirements.pot                  - 19         - 0.00%      - 
amarok_faq.pot                           - 79         - 0.00%      - 
amarok_hidden.pot                        - 14         - 0.00%      - 
amarok.pot                               - 64         - 0.00%      - 
k3b.pot                                  - 53         - 100.00%    - 
kchat.pot                                - 25         - 0.00%      - 
k3b_cdcopy-howto.pot                     - 16         - 100.00%    - 
kreatecd.pot                             - 216        - 0.00%      - 

- Concluído: 11%


- Pacote: kdeaddons
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kate-plugins_htmltools.pot               - 6          - 100.00%    - 
kicker-applets.pot                       - 19         - 100.00%    - 
kate-plugins_insertcommand.pot           - 27         - 100.00%    - 
kicker-applets_ktimemon.pot              - 72         - 100.00%    - 
kate-plugins_openheader.pot              - 6          - 100.00%    - 
konq-plugins.pot                         - 32         - 100.00%    - 
kate-plugins_filetemplates.pot           - 119        - 100.00%    - 
konq-plugins_webarchiver.pot             - 15         - 100.00%    - 
konq-plugins_babel.pot                   - 24         - 100.00%    - 
konq-plugins_imgallery.pot               - 57         - 100.00%    - 
kate-plugins_xmlcheck.pot                - 23         - 100.00%    - 
konq-plugins_smbmounter.pot              - 17         - 100.00%    - 
konq-plugins_fsview.pot                  - 31         - 100.00%    - 
konq-plugins_kuick.pot                   - 18         - 100.00%    - 
konq-plugins_validators.pot              - 23         - 100.00%    - 
konq-plugins_dirfilter.pot               - 15         - 100.00%    - 
konq-plugins_mediaplayer.pot             - 16         - 100.00%    - 
kate-plugins.pot                         - 20         - 100.00%    - 
konq-plugins_uachanger.pot               - 29         - 100.00%    - 
konq-plugins_crashes.pot                 - 14         - 100.00%    - 
konq-plugins_domtreeviewer.pot           - 16         - 100.00%    - 
konq-plugins_khtmlsettings.pot           - 36         - 100.00%    - 
kate-plugins_textfilter.pot              - 7          - 100.00%    - 
kicker-applets_kolourpicker.pot          - 12         - 100.00%    - 
kate-plugins_xmltools.pot                - 36         - 100.00%    - 

- Concluído: 100%


- Pacote: kdeextragear-3
- Arquivos                               - Num. msgs  - Tradução   - Responsável
digikamimageplugins_unsharp.pot          - 17         - 94.12%     - 
kdetv_intro.pot                          - 1          - 0.00%      - 
kdebluetooth_components.pot              - 2          - 0.00%      - 
digikamimageplugins_solarizeimage.pot    - 14         - 28.57%     - 
kdebluetooth_kbluelock.pot               - 3          - 0.00%      - 
kdetv_links.pot                          - 10         - 0.00%      - 
digikamimageplugins_charcoal.pot         - 9          - 88.89%     - 
kdebluetooth_installation.pot            - 24         - 0.00%      - 
kdetv_optimizing.pot                     - 6          - 0.00%      - 
kdebluetooth_kio_obex.pot                - 22         - 0.00%      - 
kdetv_deinterlacing.pot                  - 1          - 0.00%      - 
kdebluetooth_download.pot                - 18         - 0.00%      - 
kdebluetooth_developers.pot              - 21         - 0.00%      - 
digikamimageplugins_raindrops.pot        - 9          - 88.89%     - 
kdebluetooth_news.pot                    - 1          - 0.00%      - 
digikamimageplugins_oilpaint.pot         - 9          - 88.89%     - 
kdetv_faq.pot                            - 1          - 0.00%      - 
klicker.pot                              - 20         - 0.00%      - 
kdetv.pot                                - 52         - 0.00%      - 
kdebluetooth_khciconfig.pot              - 3          - 0.00%      - 
digikamimageplugins_adjustlevels.pot     - 26         - 84.62%     - 
kdebluetooth_kbtobexclient.pot           - 3          - 0.00%      - 
digikamimageplugins_emboss.pot           - 14         - 28.57%     - 
kdebluetooth_credits.pot                 - 31         - 0.00%      - 
kdebluetooth_introduction.pot            - 6          - 0.00%      - 
digikamimageplugins_filmgrain.pot        - 9          - 88.89%     - 
kdebluetooth_faq.pot                     - 22         - 0.00%      - 
digikamimageplugins.pot                  - 27         - 92.59%     - 
kdebluetooth_othertools.pot              - 18         - 0.00%      - 
kdebluetooth_kbtserialchat.pot           - 6          - 0.00%      - 
digikamimageplugins_despeckle.pot        - 21         - 95.24%     - 
keurocalc.pot                            - 219        - 0.00%      -  <henrique em digerati.com.br>
digikam.pot                              - 265        - 99.25%     - 
kdebluetooth_concepts.pot                - 17         - 0.00%      - 
kdebluetooth_kbtobexsrv.pot              - 8          - 0.00%      - 
kdebluetooth_bemused.pot                 - 3          - 0.00%      - 
kdebluetooth_links.pot                   - 10         - 0.00%      - 
kdetv_architecture.pot                   - 1          - 0.00%      - 
kdebluetooth_kio_sdp.pot                 - 13         - 0.00%      - 
kdetv_overscan.pot                       - 1          - 0.00%      - 
kdebluetooth.pot                         - 17         - 0.00%      - 
kdebluetooth_irmcsynckonnector.pot       - 28         - 0.00%      - 
kdebluetooth_kbluetoothd.pot             - 53         - 0.00%      - 
kdebluetooth_handsfree.pot               - 17         - 0.00%      - 

- Concluído: 35%


- Pacote: kdelibs
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kspell.pot                               - 42         - 100.00%    - 

- Concluído: 100%


- Pacote: kdeaccessibility
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kmousetool.pot                           - 96         - 100.00%    - 
kmouth.pot                               - 200        - 100.00%    - 
kmag.pot                                 - 66         - 100.00%    - 

- Concluído: 100%


- Pacote: kdeadmin
- Arquivos                               - Num. msgs  - Tradução   - Responsável
kuser.pot                                - 75         - 100.00%    - 
kcron.pot                                - 199        - 100.00%    - 
kpackage.pot                             - 241        - 0.00%      - 
kdat.pot                                 - 172        - 100.00%    - 
ksysv.pot                                - 167        - 100.00%    - 

- Concluído: 71%





-------------- Próxima Parte ----------
Um anexo não texto foi limpo...
Nome  : não disponível
Tipo  : application/pgp-signature
Tam   : 189 bytes
Descr.: não disponível
Url   : http://mail.kde.org/pipermail/kde-i18n-pt_br/attachments/20041015/f6f34756/attachment.pgp 


Mais detalhes sobre a lista de discussão Kde-i18n-pt_br