aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--po/Makefile60
-rw-r--r--po/af.po2
-rw-r--r--po/am.po2
-rw-r--r--po/ar.po2
-rw-r--r--po/as.po2
-rw-r--r--po/ast.po2
-rw-r--r--po/be.po2
-rw-r--r--po/bg.po2
-rw-r--r--po/bn.po2
-rw-r--r--po/bn_IN.po2
-rw-r--r--po/bs.po2
-rw-r--r--po/ca.po2
-rw-r--r--po/cs.po2
-rw-r--r--po/cy.po2
-rw-r--r--po/da.po2
-rw-r--r--po/de.po2
-rw-r--r--po/de_CH.po2
-rw-r--r--po/el.po2
-rw-r--r--po/en.po2
-rw-r--r--po/en_GB.po2
-rw-r--r--po/es.po2
-rw-r--r--po/et.po2
-rw-r--r--po/eu_ES.po2
-rw-r--r--po/fa.po2
-rw-r--r--po/fi.po2
-rw-r--r--po/fr.po2
-rw-r--r--po/gl.po2
-rw-r--r--po/gu.po2
-rw-r--r--po/he.po2
-rw-r--r--po/hi.po2
-rw-r--r--po/hr.po2
-rw-r--r--po/hu.po2
-rw-r--r--po/hy.po2
-rw-r--r--po/id.po2
-rw-r--r--po/ilo.po2
-rw-r--r--po/is.po2
-rw-r--r--po/it.po2
-rw-r--r--po/ja.po2
-rw-r--r--po/ka.po2
-rw-r--r--po/kn.po2
-rw-r--r--po/ko.po2
-rw-r--r--po/ku.po2
-rw-r--r--po/lo.po2
-rw-r--r--po/lt.po2
-rw-r--r--po/lv.po2
-rw-r--r--po/mk.po2
-rw-r--r--po/ml.po2
-rw-r--r--po/mr.po2
-rw-r--r--po/ms.po2
-rw-r--r--po/my.po2
-rw-r--r--po/nb.po2
-rw-r--r--po/nl.po2
-rw-r--r--po/nn.po2
-rw-r--r--po/nso.po2
-rw-r--r--po/or.po2
-rw-r--r--po/pa.po2
-rw-r--r--po/pl.po2
-rw-r--r--po/pt.po2
-rw-r--r--po/pt_BR.po2
-rw-r--r--po/ro.po2
-rw-r--r--po/ru.po2
-rw-r--r--po/si.po2
-rw-r--r--po/sk.po2
-rw-r--r--po/sl.po2
-rw-r--r--po/sos.pot2
-rw-r--r--po/sq.po2
-rw-r--r--po/sr.po2
-rw-r--r--po/sr@latin.po2
-rw-r--r--po/sv.po2
-rw-r--r--po/ta.po2
-rw-r--r--po/te.po2
-rw-r--r--po/th.po2
-rw-r--r--po/tr.po2
-rw-r--r--po/uk.po2
-rw-r--r--po/ur.po2
-rw-r--r--po/vi.po2
-rw-r--r--po/zh_CN.po2
-rw-r--r--po/zh_TW.po2
-rw-r--r--po/zu.po2
79 files changed, 138 insertions, 78 deletions
diff --git a/po/Makefile b/po/Makefile
new file mode 100644
index 00000000..e79a4a3b
--- /dev/null
+++ b/po/Makefile
@@ -0,0 +1,60 @@
+# What is this package?
+NLSPACKAGE = sos
+POTFILE = $(NLSPACKAGE).pot
+INSTALL = /usr/bin/install -c
+INSTALL_DATA = $(INSTALL) -m 644
+INSTALL_DIR = /usr/bin/install -d
+
+# destination directory
+INSTALL_NLS_DIR = $(DESTDIR)/usr/share/locale
+
+# PO catalog handling
+MSGMERGE = msgmerge -v
+XGETTEXT = xgettext --default-domain=$(NLSPACKAGE) \
+ --add-comments --language=python
+MSGFMT = msgfmt --statistics --verbose
+
+# What do we need to do
+POFILES = $(wildcard *.po)
+MOFILES = $(patsubst %.po,%.mo,$(POFILES))
+PYSRC = $(wildcard ../sos/*.py)
+SRCFILES = $(PYSRC)
+
+all:: update-po $(MOFILES)
+
+$(POTFILE):
+ $(XGETTEXT) --keyword=_ --keyword=N_ $(SRCFILES)
+ @if cmp -s $(NLSPACKAGE).po $(POTFILE); then \
+ rm -f $(NLSPACKAGE).po; \
+ else \
+ mv -f $(NLSPACKAGE).po $(POTFILE); \
+ fi; \
+
+update-po: Makefile $(POTFILE) refresh-po
+
+refresh-po: Makefile
+ for cat in $(POFILES); do \
+ lang=`basename $$cat .po`; \
+ if $(MSGMERGE) $$lang.po $(POTFILE) > $$lang.pot ; then \
+ mv -f $$lang.pot $$lang.po ; \
+ echo "$(MSGMERGE) of $$lang succeeded" ; \
+ else \
+ echo "$(MSGMERGE) of $$lang failed" ; \
+ rm -f $$lang.pot ; \
+ fi \
+ done
+
+clean:
+ @rm -fv *mo *~ .depend
+
+install: $(MOFILES)
+ @for n in $(MOFILES); do \
+ l=`basename $$n .mo`; \
+ $(INSTALL_DIR) $(INSTALL_NLS_DIR)/$$l/LC_MESSAGES; \
+ $(INSTALL_DATA) --verbose $$n $(INSTALL_NLS_DIR)/$$l/LC_MESSAGES/$(NLSPACKAGE).mo; \
+ done
+
+%.mo: %.po
+ $(MSGFMT) -o $@ $<
+
+.PHONY: missing depend $(POTFILE)
diff --git a/po/af.po b/po/af.po
index 769a4537..539b042a 100644
--- a/po/af.po
+++ b/po/af.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/am.po b/po/am.po
index 553ca094..8b6d5eff 100644
--- a/po/am.po
+++ b/po/am.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/ar.po b/po/ar.po
index 3292ada1..e996a6bf 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos 1.7\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-08-02 20:16+01\n"
"Last-Translator: Imed Chihi <ichihi@redhat.com>\n"
"Language-Team: AR <navid@redhat.com>\n"
diff --git a/po/as.po b/po/as.po
index b3234364..7c60a279 100644
--- a/po/as.po
+++ b/po/as.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.trunk.as\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-09-08 19:15+0530\n"
"Last-Translator: Amitakhya Phukan <aphukan@fedoraproject.org>\n"
"Language-Team: Assamese\n"
diff --git a/po/ast.po b/po/ast.po
index 6f2e995f..fd0a270b 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ast\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-10-24 20:58+0100\n"
"Last-Translator: Xandru Martino Ruz <xandru.martino@gmail.com>\n"
"Language-Team: Asturian <alministradores@softastur.org>\n"
diff --git a/po/be.po b/po/be.po
index 2066a7f4..09941162 100644
--- a/po/be.po
+++ b/po/be.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/bg.po b/po/bg.po
index 7a25c602..f2e769a2 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/bn.po b/po/bn.po
index f6cf3f88..a53703c0 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/bn_IN.po b/po/bn_IN.po
index c49cd6e8..c491ca20 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: bn_IN\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-06 13:09+0530\n"
"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
"Language-Team: Bengali INDIA\n"
diff --git a/po/bs.po b/po/bs.po
index 8b574fdd..67b61ba7 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/ca.po b/po/ca.po
index 45eb4587..57f72201 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-05-17 08:45\n"
"Last-Translator: Xavier Faus i Torà <xfaus@diei.udl.cat>\n"
"Language-Team: Catalan <fedora@softcatala.net>\n"
diff --git a/po/cs.po b/po/cs.po
index 4844a178..a853c2aa 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-17 21:23+0100\n"
"Last-Translator: Milan Kerslager <milan@kerslager.cz>\n"
"Language-Team: Czech <Czech <cs-users@lists.fedoraproject.org>>\n"
diff --git a/po/cy.po b/po/cy.po
index dc92d88f..6c53e515 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/da.po b/po/da.po
index 6d3f85d9..b63d73e4 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-12 13:39+0100\n"
"Last-Translator: Kris Thomsen <lakristho@gmail.com>\n"
"Language-Team: Danish <dansk@dansk-gruppen.dk\n"
diff --git a/po/de.po b/po/de.po
index 354cbe8d..63a75308 100644
--- a/po/de.po
+++ b/po/de.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-17 15:22+1000\n"
"Last-Translator: sknirT omiT <moc.tahder@sknirtt>\n"
"Language-Team: <de@li.org>\n"
diff --git a/po/de_CH.po b/po/de_CH.po
index bddb737c..47670c25 100644
--- a/po/de_CH.po
+++ b/po/de_CH.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: SOS\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-04-18 01:15+0100\n"
"Last-Translator: Fabian Affolter <fab@fedoraproject.org>\n"
"Language-Team: German <fedora-trans-de@redhat.com>\n"
diff --git a/po/el.po b/po/el.po
index 85881c8a..1b26ac6e 100644
--- a/po/el.po
+++ b/po/el.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-10 16:21-0500\n"
"Last-Translator: Giannis Konstantinidis <gloooabvoe9a@gmail.com>\n"
"Language-Team: Greek <trans-el@lists.fedoraproject.org>\n"
diff --git a/po/en.po b/po/en.po
index ad976b0e..d2f64e81 100644
--- a/po/en.po
+++ b/po/en.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/po/en_GB.po b/po/en_GB.po
index 848a7ac6..e21c1be9 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/es.po b/po/es.po
index 97a2ad26..a6acad63 100644
--- a/po/es.po
+++ b/po/es.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-12 10:56-0300\n"
"Last-Translator: Héctor Daniel Cabrera <logan@fedoraproject.org>\n"
"Language-Team: Español <trans-es@lists.fedoraproject.org>\n"
diff --git a/po/et.po b/po/et.po
index 2bfafe4e..219d12b6 100644
--- a/po/et.po
+++ b/po/et.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/eu_ES.po b/po/eu_ES.po
index acc18951..34194acd 100644
--- a/po/eu_ES.po
+++ b/po/eu_ES.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/fa.po b/po/fa.po
index 18e2877c..21732251 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/fi.po b/po/fi.po
index f0dbd199..ae708acc 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-13 14:00+0200\n"
"Last-Translator: Ville-Pekka Vainio <vpivaini@cs.helsinki.fi>\n"
"Language-Team: Finnish <laatu@lokalisointi.org>\n"
diff --git a/po/fr.po b/po/fr.po
index ba2e827b..9e809ec7 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-20 21:28+0100\n"
"Last-Translator: Thomas Canniot <mrtom@fedoraproject.org>\n"
"Language-Team: French <trans-fr@lists.fedoraproject.org>\n"
diff --git a/po/gl.po b/po/gl.po
index 24ba803b..579fa12b 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/gu.po b/po/gu.po
index 472dcf95..6fd98292 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gu\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-06 16:53+0530\n"
"Last-Translator: Ankit Patel <ankit@redhat.com>\n"
"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\n"
diff --git a/po/he.po b/po/he.po
index 49610fa4..6c36dc0d 100644
--- a/po/he.po
+++ b/po/he.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/hi.po b/po/hi.po
index d04a15b2..67ff2e77 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: hi\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-06 17:17+0530\n"
"Last-Translator: Rajesh Ranjan <rranjan@redhat.com>\n"
"Language-Team: Hindi <hindi.sf.net>\n"
diff --git a/po/hr.po b/po/hr.po
index 0f3981bb..c1c334b9 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/hu.po b/po/hu.po
index 59f1f615..e8e82d8c 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-16 17:23+0100\n"
"Last-Translator: Peter Bojtos <ptr@ulx.hu>\n"
"Language-Team: Hungarian <fedora-trans-hu@redhat.com>\n"
diff --git a/po/hy.po b/po/hy.po
index 7977f67d..a34a5974 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/id.po b/po/id.po
index 7a0fee10..adde09e3 100644
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/ilo.po b/po/ilo.po
index b263a4c6..613af7c3 100644
--- a/po/ilo.po
+++ b/po/ilo.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/is.po b/po/is.po
index e1f8e613..6a297869 100644
--- a/po/is.po
+++ b/po/is.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/it.po b/po/it.po
index 01e06174..98e952c2 100644
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: it\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-06 15:02+1000\n"
"Last-Translator: \n"
"Language-Team: <it@li.org>\n"
diff --git a/po/ja.po b/po/ja.po
index d30fa2a6..385b1061 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ja\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-23 16:03+0900\n"
"Last-Translator: Kiyoto Hashida <khashida@redhat.com>\n"
"Language-Team: Japanese <jp@li.org>\n"
diff --git a/po/ka.po b/po/ka.po
index e5b1a99b..d2ef40e2 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/kn.po b/po/kn.po
index 443db0f8..d5b55534 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.trunk.kn\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-09-03 23:40+0530\n"
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
"Language-Team: Kannada <en@li.org>\n"
diff --git a/po/ko.po b/po/ko.po
index dcdce579..a0dfc3d5 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ko\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-07 09:56+1000\n"
"Last-Translator: \n"
"Language-Team: <ko@li.org>\n"
diff --git a/po/ku.po b/po/ku.po
index 6d73ff8e..29f74639 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/lo.po b/po/lo.po
index 211e0e11..263ddaf8 100644
--- a/po/lo.po
+++ b/po/lo.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/lt.po b/po/lt.po
index a3a758aa..22765856 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/lv.po b/po/lv.po
index 1d6b67cc..dbbaae42 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/mk.po b/po/mk.po
index 73a4b578..7c25d60a 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/ml.po b/po/ml.po
index 1424530c..9c7f4dfa 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ml\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-06 16:05+0530\n"
"Last-Translator: Ani Peter <apeter@redhat.com>\n"
"Language-Team: Malayalam\n"
diff --git a/po/mr.po b/po/mr.po
index 3388e10e..7763782c 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.trunk\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-09-04 10:58+0530\n"
"Last-Translator: Sandeep Shedmake <sshedmak@redhat.com>\n"
"Language-Team: Marathi <fedora-trans-mr@redhat.com>\n"
diff --git a/po/ms.po b/po/ms.po
index f4db13b9..8da4eeea 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/my.po b/po/my.po
index 7c68d4c6..b67d1f10 100644
--- a/po/my.po
+++ b/po/my.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/nb.po b/po/nb.po
index 798dc304..5a677278 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/nl.po b/po/nl.po
index e02ad1b6..42620a77 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.trunk-nl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-12 13:47+0100\n"
"Last-Translator: R.E. van der Luit <nippur@fedoraproject.org>\n"
"Language-Team: Dutch <nippur@fedoraproject.org>\n"
diff --git a/po/nn.po b/po/nn.po
index 572ebc3e..8f153ad6 100644
--- a/po/nn.po
+++ b/po/nn.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/nso.po b/po/nso.po
index 320cd044..a18ae79e 100644
--- a/po/nso.po
+++ b/po/nso.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/or.po b/po/or.po
index ee3cf1dd..98b4d3d7 100644
--- a/po/or.po
+++ b/po/or.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.trunk.or\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-09-02 17:02+0530\n"
"Last-Translator: Manoj Kumar Giri <mgiri@redhat.com>\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
diff --git a/po/pa.po b/po/pa.po
index f3e2af38..7aef1555 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-06 16:55+0530\n"
"Last-Translator: Jaswinder Singh <jsingh@redhat.com>\n"
"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
diff --git a/po/pl.po b/po/pl.po
index 64b4e52a..062e66cd 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-12 14:10+0100\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <trans-pl@lists.fedoraproject.org>\n"
diff --git a/po/pt.po b/po/pt.po
index 788c06b1..e8d59baa 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-09-05 04:14+0100\n"
"Last-Translator: Rui Gouveia <rui.gouveia@globaltek.pt>\n"
"Language-Team: PT <fedora-trans-pt@redhat.com>\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 7ec960fe..8db409f5 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-12 15:19-0300\n"
"Last-Translator: Taylon Silmer <taylonsilva@gmail.com>\n"
"Language-Team: Brazilian Portuguese <trans-pt_br@lists.fedoraproject.org>\n"
diff --git a/po/ro.po b/po/ro.po
index 69bc91d4..dd3fc06b 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/ru.po b/po/ru.po
index c89c141c..5a70b737 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ru\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-12 11:58+1100\n"
"Last-Translator: Yulia <ypoyarko@redhat.com>\n"
"Language-Team: Russian\n"
diff --git a/po/si.po b/po/si.po
index 11cc982d..30f3f622 100644
--- a/po/si.po
+++ b/po/si.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: si\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-07 19:03+0530\n"
"Last-Translator: Danishka Navin <snavin@redhat.com>\n"
"Language-Team: Sinhala <en@li.org>\n"
diff --git a/po/sk.po b/po/sk.po
index 5950f35c..2de4b93c 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-09-20 14:43+0200\n"
"Last-Translator: Ondrej Šulek <feonsu@gmail.com>\n"
"Language-Team: Slovak <fedora-trans-sk@redhat.com>\n"
diff --git a/po/sl.po b/po/sl.po
index e3a05c11..0e3299b6 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/sos.pot b/po/sos.pot
index afe833ee..1052f2b5 100644
--- a/po/sos.pot
+++ b/po/sos.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/po/sq.po b/po/sq.po
index 0289b193..829c95ea 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/sr.po b/po/sr.po
index cec492bd..9d2a15e1 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-15 23:42+0100\n"
"Last-Translator: Miloš Komarčević <kmilos@gmail.com>\n"
"Language-Team: Serbian <trans-sr@lists.fedoraproject.org>\n"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 6e0c56f3..f84a83c0 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-15 23:42+0100\n"
"Last-Translator: Miloš Komarčević <kmilos@gmail.com>\n"
"Language-Team: Serbian <trans-sr@lists.fedoraproject.org>\n"
diff --git a/po/sv.po b/po/sv.po
index 4a561bc9..ee8fc465 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-16 09:33+0100\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
diff --git a/po/ta.po b/po/ta.po
index a14613ad..f6e2df3d 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ta\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-07 14:23+0530\n"
"Last-Translator: \n"
"Language-Team: <en@li.org>\n"
diff --git a/po/te.po b/po/te.po
index 17009424..58a9ec85 100644
--- a/po/te.po
+++ b/po/te.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.trunk.te\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-09-07 21:18+0530\n"
"Last-Translator: Krishna Babu K <kkrothap@redhat.com>\n"
"Language-Team: Telugu <en@li.org>\n"
diff --git a/po/th.po b/po/th.po
index 3fda89d5..de8f3a5f 100644
--- a/po/th.po
+++ b/po/th.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos.th\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2009-05-13 12:12+0000\n"
"Last-Translator: \n"
"Language-Team: Thai <thai-l10n@googlegroups.com>\n"
diff --git a/po/tr.po b/po/tr.po
index 04767b49..9d325be4 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/uk.po b/po/uk.po
index c85a4988..d11d657e 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: sos\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2010-03-21 08:45\n"
"Last-Translator: Maxim Dzіumanenko <dziumanenko@gmail.com>\n"
"Language-Team: <uk@li.org>\n"
diff --git a/po/ur.po b/po/ur.po
index be5c2215..1c25ea3d 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/vi.po b/po/vi.po
index 5dc7c0b7..51a5fe01 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 2a8872bc..ffe7d9b7 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zh_CN\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-08 09:32+1000\n"
"Last-Translator: Leah Liu <lliu@redhat.com>\n"
"Language-Team: Chinese, Simplied(简体中文) <zh_CN@li.org>\n"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 12528607..206e568b 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zh_TW\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-11-07 15:10+1000\n"
"Last-Translator: Chester Cheng <ccheng@redhat.com>\n"
"Language-Team: Chinese, Tradition <zh_TW@li.org>\n"
diff --git a/po/zu.po b/po/zu.po
index dfa49052..e5e0e6b1 100644
--- a/po/zu.po
+++ b/po/zu.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-26 16:16-0400\n"
+"POT-Creation-Date: 2010-03-26 16:27-0400\n"
"PO-Revision-Date: 2007-10-24 08:45\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"