summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Heinlein <sebastian.heinlein@web.de>2006-04-23 21:16:51 +0200
committerSebastian Heinlein <sebastian.heinlein@web.de>2006-04-23 21:16:51 +0200
commit9303625942cdd5383ac5e9c1399c060569b9471e (patch)
tree280c2d7fb367404f1994a721f00ef81424d22243
parentd690ee71577c94de03778ac0d1cff2161bc6e555 (diff)
downloadpython-apt-9303625942cdd5383ac5e9c1399c060569b9471e.tar.gz
* Fix some more gettext issues
* Update the language files and provide once again a complete German translation :)
-rw-r--r--SoftwareProperties/SoftwareProperties.py22
-rw-r--r--po/bg.po31
-rw-r--r--po/br.po30
-rw-r--r--po/cs.po32
-rw-r--r--po/da.po31
-rw-r--r--po/de.po34
-rw-r--r--po/el.po32
-rw-r--r--po/en_CA.po31
-rw-r--r--po/en_GB.po31
-rw-r--r--po/es.po32
-rw-r--r--po/fi.po32
-rw-r--r--po/fr.po32
-rw-r--r--po/gl.po31
-rw-r--r--po/he.po32
-rw-r--r--po/hu.po32
-rw-r--r--po/it.po32
-rw-r--r--po/ja.po32
-rw-r--r--po/lt.po32
-rw-r--r--po/mk.po31
-rw-r--r--po/nb.po32
-rw-r--r--po/ne.po31
-rw-r--r--po/nl.po30
-rw-r--r--po/no.po31
-rw-r--r--po/pa.po31
-rw-r--r--po/pl.po32
-rw-r--r--po/pt.po32
-rw-r--r--po/pt_BR.po32
-rw-r--r--po/ro.po32
-rw-r--r--po/rw.po31
-rw-r--r--po/sk.po32
-rw-r--r--po/sv.po32
-rw-r--r--po/uk.po32
-rw-r--r--po/update-manager.pot30
-rw-r--r--po/vi.po31
-rw-r--r--po/xh.po30
-rw-r--r--po/zh_CN.po32
-rw-r--r--po/zh_HK.po31
-rw-r--r--po/zh_TW.po31
38 files changed, 1137 insertions, 50 deletions
diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py
index 237ffbdd..8c3e4878 100644
--- a/SoftwareProperties/SoftwareProperties.py
+++ b/SoftwareProperties/SoftwareProperties.py
@@ -100,16 +100,16 @@ class SoftwareProperties(SimpleGladeApp):
update_days = apt_pkg.Config.FindI(CONF_MAP["autoupdate"])
- self.combobox_update_interval.append_text("Daily")
- self.combobox_update_interval.append_text("Every two days")
- self.combobox_update_interval.append_text("Weekly")
- self.combobox_update_interval.append_text("Every two weeks")
+ self.combobox_update_interval.append_text(_("Daily"))
+ self.combobox_update_interval.append_text(_("Every two days"))
+ self.combobox_update_interval.append_text(_("Weekly"))
+ self.combobox_update_interval.append_text(_("Every two weeks"))
# If a custom period is defined add an corresponding entry
if not update_days in self.combobox_interval_mapping.values():
if update_days > 0:
- self.combobox_update_interval.append_text(_("Every %s days"
- % update_days))
+ self.combobox_update_interval.append_text(_("Every %s days")
+ % update_days)
self.combobox_interval_mapping[4] = update_days
for key in self.combobox_interval_mapping:
@@ -131,15 +131,15 @@ class SoftwareProperties(SimpleGladeApp):
delete_days = apt_pkg.Config.FindI(CONF_MAP["max_age"])
- self.combobox_delete_interval.append_text("After one week")
- self.combobox_delete_interval.append_text("After two weeks")
- self.combobox_delete_interval.append_text("After one month")
+ self.combobox_delete_interval.append_text(_("After one week"))
+ self.combobox_delete_interval.append_text(_("After two weeks"))
+ self.combobox_delete_interval.append_text(_("After one month"))
# If a custom period is defined add an corresponding entry
if not delete_days in self.combobox_delete_interval_mapping.values():
if delete_days > 0 and CONF_MAP["autoclean"] != 0:
- self.combobox_delete_interval.append_text(_("After %s days"
- % delete_days))
+ self.combobox_delete_interval.append_text(_("After %s days")
+ % delete_days)
self.combobox_delete_interval_mapping[3] = delete_days
for key in self.combobox_delete_interval_mapping:
diff --git a/po/bg.po b/po/bg.po
index 37477fda..fb9ce023 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:18+0000\n"
"Last-Translator: Rostislav Raykov <nostalgiafed@gmail.com>\n"
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
@@ -17,11 +17,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Допълнителна информация</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/br.po b/po/br.po
index 06aabfac..e36c9438 100644
--- a/po/br.po
+++ b/po/br.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:18+0000\n"
"Last-Translator: Rosetta Administrators <rosetta@launchpad.net>\n"
"Language-Team: Breton <br@li.org>\n"
@@ -17,11 +17,39 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+msgid "Daily"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/cs.po b/po/cs.po
index 6aef356e..1c04099a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-12 13:20+0000\n"
"Last-Translator: Ondřej Nový <ubuntu@ondrej.org>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -18,11 +18,41 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Detaily"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Každých %s dní"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Každých %s dní"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/da.po b/po/da.po
index 3c031434..f5bed9dd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-10 19:53+0000\n"
"Last-Translator: Andreas Lloyd <lloydinho@gmail.com>\n"
"Language-Team: Danish <da@li.org>\n"
@@ -17,11 +17,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+msgid "Daily"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Hver %s. dag"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, fuzzy, python-format
msgid "Every %s days"
msgstr "Hver %s. dag"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/de.po b/po/de.po
index bebddf36..b6931364 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,20 +9,48 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
-"PO-Revision-Date: 2006-04-23 21:01+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
+"PO-Revision-Date: 2006-04-23 21:15+0200\n"
"Last-Translator: Andreas Nagl <andreas.nagl@aon.at>\n"
"Language-Team: German GNOME Translations <gnome-de@gnome.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1\n"
+"Plural-Forms: nplurals=2; plural=n != 1"
+
+#: ../SoftwareProperties/SoftwareProperties.py:103
+msgid "Daily"
+msgstr "Täglich"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr "Alle %s Tage"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr "Wöchentlich"
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr "Alle zwei Wochen"
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Alle %s Tage"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr "Nach einer Woche"
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr "Nach zwei Wochen"
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr "Nach einem Monat"
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/el.po b/po/el.po
index 03b35bba..4b5c1772 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-05 14:17+0000\n"
"Last-Translator: Kostas Papadimas <pkst@gmx.net>\n"
"Language-Team: Greek <team@gnome.gr>\n"
@@ -16,11 +16,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Λεπτομέρειες"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Κάθε %s ημέρες"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Κάθε %s ημέρες"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/en_CA.po b/po/en_CA.po
index 92951793..0bc25df7 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Adam Weinberger <adamw@gnome.org>\n"
"Language-Team: Canadian English <adamw@gnome.org>\n"
@@ -17,11 +17,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Details</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/en_GB.po b/po/en_GB.po
index 1a31f561..93c96859 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Abigail Brady <morwen@evilmagic.org>\n"
"Language-Team: \n"
@@ -16,11 +16,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Details</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/es.po b/po/es.po
index ad744b30..af290ce1 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-08 13:26+0000\n"
"Last-Translator: Ricardo Pérez López <ricardo@iesdonana.org>\n"
"Language-Team: Spanish <traductores@gnome.org>\n"
@@ -19,11 +19,41 @@ msgstr ""
"X-Generator: KBabel 1.10\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Detalles"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Cada %s días"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Cada %s días"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/fi.po b/po/fi.po
index 08d9f7bc..7b87018c 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-10 07:26+0000\n"
"Last-Translator: Timo Jyrinki <timo.jyrinki@iki.fi>\n"
"Language-Team: Finnish <ubuntu-fi@lists.ubuntu.com>\n"
@@ -16,11 +16,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Yksityiskohdat"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "%s päivän välein"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "%s päivän välein"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/fr.po b/po/fr.po
index 4851d1f6..ddb23289 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.37.2\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-10 09:41+0000\n"
"Last-Translator: benje <benhaim_jerome@yahoo.fr>\n"
"Language-Team: French <gnomefr@traduc.org>\n"
@@ -17,11 +17,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Détails"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Tous les %s jours"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Tous les %s jours"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/gl.po b/po/gl.po
index 7a60e124..c370ab70 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gl\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Ignacio Casal Quinteiro <nacho.resa@gmail.com>\n"
"Language-Team: Galego\n"
@@ -17,11 +17,40 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.10.2\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Detalles</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/he.po b/po/he.po
index 4249410a..811e7241 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Yaniv Abir <yanivabir@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
@@ -20,11 +20,41 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.10.2\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>פרטים</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "כל %s ימים"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "כל %s ימים"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/hu.po b/po/hu.po
index 83a2297b..6609cc6d 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-11 20:19+0000\n"
"Last-Translator: Gabor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome@gnome.hu>\n"
@@ -17,11 +17,41 @@ msgstr ""
"X-Generator: KBabel 1.3.1\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Részletek</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "%s naponta"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "%s naponta"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/it.po b/po/it.po
index 3c76b942..d3a20f02 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-12 09:37+0000\n"
"Last-Translator: MiloCasagrande <milo_casagrande@yahoo.it>\n"
"Language-Team: Italian <it@li.org>\n"
@@ -18,11 +18,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Dettagli"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Ogni %s giorni"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Ogni %s giorni"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/ja.po b/po/ja.po
index dad7416f..eaf15a7d 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.42.4\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-11 13:39+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: Ubuntu Japanese Team <ubuntu-ja-users@freeml.com>\n"
@@ -18,11 +18,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "詳細"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "%s 日ごと"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "%s 日ごと"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/lt.po b/po/lt.po
index 59f56a1f..a28606a8 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-10 18:55+0000\n"
"Last-Translator: Jonas Slivka <jonas.slivka@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -17,11 +17,41 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
"100<10 || n%100>=20) ? 1 : 2);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Detalės"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Kas %s dienas"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Kas %s dienas"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/mk.po b/po/mk.po
index 2ca089eb..0611a9e8 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mk\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:23+0000\n"
"Last-Translator: Арангел Ангов <ufo@linux.net.mk>\n"
"Language-Team: Macedonian <ossm-members@hedona.on.net.mk>\n"
@@ -17,11 +17,40 @@ msgstr ""
"Plural-Forms: nplurals=3; plural= n==1 || n%10==1 ? 0 : 1\n"
"X-Generator: KBabel 1.10\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Детали</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/nb.po b/po/nb.po
index 02d20294..c6b4f26d 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-12 07:28+0000\n"
"Last-Translator: Tor Harald Thorland <linux@strigen.com>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
@@ -17,11 +17,41 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.10\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Detaljer"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Hver %s dag"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Hver %s dag"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/ne.po b/po/ne.po
index 4edf289b..ad1f304e 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager.HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:24+0000\n"
"Last-Translator: Jaydeep Bhusal <zaydeep@hotmail.com>\n"
"Language-Team: Nepali <info@mpp.org.np>\n"
@@ -18,11 +18,40 @@ msgstr ""
"X-Generator: KBabel 1.9.1\n"
"Plural-Forms: nplurals=2;plural=(n!=0)\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>विवरणहरु</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/nl.po b/po/nl.po
index 7389a3bb..1b4ecfd2 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-03-18 12:07+0000\n"
"Last-Translator: Michiel Sikkes <michiel@eyesopened.nl>\n"
"Language-Team: Nederlands <vertaling@vrijschrift.org>\n"
@@ -16,11 +16,39 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+msgid "Daily"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/no.po b/po/no.po
index d1bc0c83..52911b4a 100644
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: nb\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2005-06-08 23:10+0200\n"
"Last-Translator: Terance Edward Sola <terance@lyse.net>\n"
"Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.uio.no>\n"
@@ -17,11 +17,40 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.10\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Detaljer</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/pa.po b/po/pa.po
index 72f2d010..26f0ab89 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: pa\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:24+0000\n"
"Last-Translator: Amanpreet Singh Alam <amanpreetalam@yahoo.com>\n"
"Language-Team: Punjabi <fedora-transa-pa@redhat.com>\n"
@@ -17,11 +17,40 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.9.1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>ਵੇਰਵਾ</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/pl.po b/po/pl.po
index 96e967ef..972a087c 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager cvs\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-10 09:28+0000\n"
"Last-Translator: Tomasz Dominikowski <dominikowski@gmail.com>\n"
"Language-Team: Polish <translators@gnomepl.org>\n"
@@ -17,11 +17,41 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Szczegóły"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Co %s dni"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Co %s dni"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/pt.po b/po/pt.po
index a2b43f98..46e8da97 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-08 14:42+0000\n"
"Last-Translator: Mykas0 <Mykas0@gmail.com>\n"
"Language-Team: Ubuntu Portuguese Team <ubuntu-pt.org>\n"
@@ -15,11 +15,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Detalhes"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Todos os %s dias"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Todos os %s dias"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 2951d3b9..3f9631d2 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-10 05:17+0000\n"
"Last-Translator: Mário Meyer <mariomeyer@ubuntubrasil.org>\n"
"Language-Team: Ubuntu-BR <tradutores@listas.ubuntubrasil.org>\n"
@@ -16,11 +16,41 @@ msgstr ""
"X-Poedit-Country: BRAZIL\n"
"Plural-Forms: nplurals=2; plural=n > 1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Detalhes"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "A cada %s dias"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "A cada %s dias"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/ro.po b/po/ro.po
index 8ac72658..e5e20b76 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:24+0000\n"
"Last-Translator: Dan Damian <dand@codemonkey.ro>\n"
"Language-Team: Romanian <gnomero-list@lists.sourceforge.net>\n"
@@ -17,11 +17,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n %\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Detalii</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "La fiecare %s zile"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, fuzzy, python-format
msgid "Every %s days"
msgstr "La fiecare %s zile"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/rw.po b/po/rw.po
index 17eed350..12a0b7e5 100644
--- a/po/rw.po
+++ b/po/rw.po
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:24+0000\n"
"Last-Translator: Steve Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@@ -24,11 +24,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<B B"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/sk.po b/po/sk.po
index 300fb3e4..28298029 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-07 00:57+0000\n"
"Last-Translator: Martin Mancuska <borgcube@centrum.sk>\n"
"Language-Team: Slovak <sk@li.org>\n"
@@ -18,11 +18,41 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Detaily"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Každých %s dní"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Každých %s dní"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/sv.po b/po/sv.po
index b5a84295..55a4ef1b 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-09 20:09+0000\n"
"Last-Translator: Christian Bjälevik <nafallo@magicalforest.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -17,11 +17,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "Detaljer"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Var %s dag"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Var %s dag"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/uk.po b/po/uk.po
index f9f46945..b94005b6 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Serhey Kusyumoff <gpalco@gmail.com>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
@@ -15,11 +15,41 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Подробиці</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "Кожні %s днів"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "Кожні %s днів"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/update-manager.pot b/po/update-manager.pot
index 23e7eaae..052aed12 100644
--- a/po/update-manager.pot
+++ b/po/update-manager.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\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"
@@ -17,11 +17,39 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+msgid "Daily"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/vi.po b/po/vi.po
index f3e3294a..abc8db91 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager Gnome HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
@@ -16,11 +16,40 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0\n"
"X-Generator: LocFactoryEditor 1.2.2\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>Chi tiết</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/xh.po b/po/xh.po
index e7f208e7..1c1b076f 100644
--- a/po/xh.po
+++ b/po/xh.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-notifier\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Canonical Ltd <translations@canonical.com>\n"
"Language-Team: Xhosa <xh-translate@ubuntu.com>\n"
@@ -17,11 +17,39 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+msgid "Daily"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index b6caba8c..436bd2f6 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager HEAD\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-08 11:35+0000\n"
"Last-Translator: stone_unix <gaoghy@gmail.com>\n"
"Language-Team: zh_CN <i18n-translation@lists.linux.net.cn>\n"
@@ -16,11 +16,41 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "详细信息"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+#, fuzzy
+msgid "Every two days"
+msgstr "每%s天"
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr "每%s天"
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/zh_HK.po b/po/zh_HK.po
index c777d7a9..86c189f5 100644
--- a/po/zh_HK.po
+++ b/po/zh_HK.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.41.1\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
@@ -15,11 +15,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>細節</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 0d7e08bb..f068c1b5 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: update-manager 0.41.1\n"
"Report-Msgid-Bugs-To: sebastian.heinlein@web.de\n"
-"POT-Creation-Date: 2006-04-23 21:06+0200\n"
+"POT-Creation-Date: 2006-04-23 21:13+0200\n"
"PO-Revision-Date: 2006-04-04 20:25+0000\n"
"Last-Translator: Abel Cheung <abelcheung@gmail.com>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
@@ -15,11 +15,40 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../SoftwareProperties/SoftwareProperties.py:103
+#, fuzzy
+msgid "Daily"
+msgstr "<b>細節</b>"
+
+#: ../SoftwareProperties/SoftwareProperties.py:104
+msgid "Every two days"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:105
+msgid "Weekly"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:106
+msgid "Every two weeks"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:111
#, python-format
msgid "Every %s days"
msgstr ""
+#: ../SoftwareProperties/SoftwareProperties.py:134
+msgid "After one week"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:135
+msgid "After two weeks"
+msgstr ""
+
+#: ../SoftwareProperties/SoftwareProperties.py:136
+msgid "After one month"
+msgstr ""
+
#: ../SoftwareProperties/SoftwareProperties.py:141
#, python-format
msgid "After %s days"