diff options
| author | Sebastian Heinlein <sebastian.heinlein@web.de> | 2006-04-23 21:16:51 +0200 |
|---|---|---|
| committer | Sebastian Heinlein <sebastian.heinlein@web.de> | 2006-04-23 21:16:51 +0200 |
| commit | 9303625942cdd5383ac5e9c1399c060569b9471e (patch) | |
| tree | 280c2d7fb367404f1994a721f00ef81424d22243 | |
| parent | d690ee71577c94de03778ac0d1cff2161bc6e555 (diff) | |
| download | python-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.py | 22 | ||||
| -rw-r--r-- | po/bg.po | 31 | ||||
| -rw-r--r-- | po/br.po | 30 | ||||
| -rw-r--r-- | po/cs.po | 32 | ||||
| -rw-r--r-- | po/da.po | 31 | ||||
| -rw-r--r-- | po/de.po | 34 | ||||
| -rw-r--r-- | po/el.po | 32 | ||||
| -rw-r--r-- | po/en_CA.po | 31 | ||||
| -rw-r--r-- | po/en_GB.po | 31 | ||||
| -rw-r--r-- | po/es.po | 32 | ||||
| -rw-r--r-- | po/fi.po | 32 | ||||
| -rw-r--r-- | po/fr.po | 32 | ||||
| -rw-r--r-- | po/gl.po | 31 | ||||
| -rw-r--r-- | po/he.po | 32 | ||||
| -rw-r--r-- | po/hu.po | 32 | ||||
| -rw-r--r-- | po/it.po | 32 | ||||
| -rw-r--r-- | po/ja.po | 32 | ||||
| -rw-r--r-- | po/lt.po | 32 | ||||
| -rw-r--r-- | po/mk.po | 31 | ||||
| -rw-r--r-- | po/nb.po | 32 | ||||
| -rw-r--r-- | po/ne.po | 31 | ||||
| -rw-r--r-- | po/nl.po | 30 | ||||
| -rw-r--r-- | po/no.po | 31 | ||||
| -rw-r--r-- | po/pa.po | 31 | ||||
| -rw-r--r-- | po/pl.po | 32 | ||||
| -rw-r--r-- | po/pt.po | 32 | ||||
| -rw-r--r-- | po/pt_BR.po | 32 | ||||
| -rw-r--r-- | po/ro.po | 32 | ||||
| -rw-r--r-- | po/rw.po | 31 | ||||
| -rw-r--r-- | po/sk.po | 32 | ||||
| -rw-r--r-- | po/sv.po | 32 | ||||
| -rw-r--r-- | po/uk.po | 32 | ||||
| -rw-r--r-- | po/update-manager.pot | 30 | ||||
| -rw-r--r-- | po/vi.po | 31 | ||||
| -rw-r--r-- | po/xh.po | 30 | ||||
| -rw-r--r-- | po/zh_CN.po | 32 | ||||
| -rw-r--r-- | po/zh_HK.po | 31 | ||||
| -rw-r--r-- | po/zh_TW.po | 31 |
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: @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" |
