From 9303625942cdd5383ac5e9c1399c060569b9471e Mon Sep 17 00:00:00 2001 From: Sebastian Heinlein Date: Sun, 23 Apr 2006 21:16:51 +0200 Subject: * Fix some more gettext issues * Update the language files and provide once again a complete German translation :) --- SoftwareProperties/SoftwareProperties.py | 22 ++++++++++----------- po/bg.po | 31 ++++++++++++++++++++++++++++- po/br.po | 30 +++++++++++++++++++++++++++- po/cs.po | 32 +++++++++++++++++++++++++++++- po/da.po | 31 ++++++++++++++++++++++++++++- po/de.po | 34 +++++++++++++++++++++++++++++--- po/el.po | 32 +++++++++++++++++++++++++++++- po/en_CA.po | 31 ++++++++++++++++++++++++++++- po/en_GB.po | 31 ++++++++++++++++++++++++++++- po/es.po | 32 +++++++++++++++++++++++++++++- po/fi.po | 32 +++++++++++++++++++++++++++++- po/fr.po | 32 +++++++++++++++++++++++++++++- po/gl.po | 31 ++++++++++++++++++++++++++++- po/he.po | 32 +++++++++++++++++++++++++++++- po/hu.po | 32 +++++++++++++++++++++++++++++- po/it.po | 32 +++++++++++++++++++++++++++++- po/ja.po | 32 +++++++++++++++++++++++++++++- po/lt.po | 32 +++++++++++++++++++++++++++++- po/mk.po | 31 ++++++++++++++++++++++++++++- po/nb.po | 32 +++++++++++++++++++++++++++++- po/ne.po | 31 ++++++++++++++++++++++++++++- po/nl.po | 30 +++++++++++++++++++++++++++- po/no.po | 31 ++++++++++++++++++++++++++++- po/pa.po | 31 ++++++++++++++++++++++++++++- po/pl.po | 32 +++++++++++++++++++++++++++++- po/pt.po | 32 +++++++++++++++++++++++++++++- po/pt_BR.po | 32 +++++++++++++++++++++++++++++- po/ro.po | 32 +++++++++++++++++++++++++++++- po/rw.po | 31 ++++++++++++++++++++++++++++- po/sk.po | 32 +++++++++++++++++++++++++++++- po/sv.po | 32 +++++++++++++++++++++++++++++- po/uk.po | 32 +++++++++++++++++++++++++++++- po/update-manager.pot | 30 +++++++++++++++++++++++++++- po/vi.po | 31 ++++++++++++++++++++++++++++- po/xh.po | 30 +++++++++++++++++++++++++++- po/zh_CN.po | 32 +++++++++++++++++++++++++++++- po/zh_HK.po | 31 ++++++++++++++++++++++++++++- 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: 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 \n" "Language-Team: Bulgarian \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 "Допълнителна информация" + +#: ../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 \n" "Language-Team: Breton \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ý \n" "Language-Team: Czech \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 \n" "Language-Team: Danish \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 \n" "Language-Team: German GNOME Translations \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 \n" "Language-Team: Greek \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 \n" "Language-Team: Canadian English \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 "Details" + +#: ../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 \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 "Details" + +#: ../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 \n" "Language-Team: Spanish \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 \n" "Language-Team: Finnish \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 \n" "Language-Team: French \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 \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 "Detalles" + +#: ../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 \n" "Language-Team: Hebrew \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 "פרטים" + +#: ../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 \n" "Language-Team: Hungarian \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 "Részletek" + +#: ../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 \n" "Language-Team: Italian \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 \n" "Language-Team: Ubuntu Japanese Team \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 \n" "Language-Team: Lithuanian \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: Арангел Ангов \n" "Language-Team: Macedonian \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 "Детали" + +#: ../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 \n" "Language-Team: Norwegian Bokmal \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 \n" "Language-Team: Nepali \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 "विवरणहरु" + +#: ../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 \n" "Language-Team: Nederlands \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 \n" "Language-Team: Norwegian Bokmal \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 "Detaljer" + +#: ../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 \n" "Language-Team: Punjabi \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 "ਵੇਰਵਾ" + +#: ../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 \n" "Language-Team: Polish \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 \n" "Language-Team: Ubuntu Portuguese Team \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 \n" "Language-Team: Ubuntu-BR \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 \n" "Language-Team: Romanian \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 "Detalii" + +#: ../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 \n" "Language-Team: Kinyarwanda \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 "\n" "Language-Team: Slovak \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 \n" "Language-Team: Swedish \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 \n" "Language-Team: Ukrainian \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 "Подробиці" + +#: ../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 \n" "Language-Team: LANGUAGE \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 \n" "Language-Team: Vietnamese \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 "Chi tiết" + +#: ../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 \n" "Language-Team: Xhosa \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 \n" "Language-Team: zh_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 \n" "Language-Team: Chinese (traditional) \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 "細節" + +#: ../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 \n" "Language-Team: Chinese (traditional) \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 "細節" + +#: ../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" -- cgit v1.2.3