summaryrefslogtreecommitdiff
path: root/SoftwareProperties
diff options
context:
space:
mode:
authorSebastian Heinlein <sebastian.heinlein@web.de>2006-01-26 19:54:10 +0100
committerSebastian Heinlein <sebastian.heinlein@web.de>2006-01-26 19:54:10 +0100
commit79bbe42e52af6ddd5d680d118ac09a50dafc9b78 (patch)
tree0cd83dc37eef323867d26cdc0e4f3b67aff89b54 /SoftwareProperties
parent31da72b447877118bd911ba9b4610bf3173f3f50 (diff)
downloadpython-apt-79bbe42e52af6ddd5d680d118ac09a50dafc9b78.tar.gz
* Do not use header capitalization in the combo box. The HIG says sentence capitalization
* Add a ":" to the checkbox for automatic updates. the sentence does not include the combo box
Diffstat (limited to 'SoftwareProperties')
-rw-r--r--SoftwareProperties/SoftwareProperties.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/SoftwareProperties/SoftwareProperties.py b/SoftwareProperties/SoftwareProperties.py
index edcd407d..961c4fdd 100644
--- a/SoftwareProperties/SoftwareProperties.py
+++ b/SoftwareProperties/SoftwareProperties.py
@@ -92,13 +92,13 @@ 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("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("Every two weeks")
# If a custom period is defined add an corresponding entry
if not update_days in self.combobox_interval_mapping.values():
- self.combobox_update_interval.append_text(_("Every %s Days"
+ self.combobox_update_interval.append_text(_("Every %s days"
% update_days))
self.combobox_interval_mapping[4] = update_days