summaryrefslogtreecommitdiffstats
path: root/todolists
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-03-01 21:43:12 -0600
committerDan McGee <dan@archlinux.org>2010-03-01 21:43:12 -0600
commit6e9477ca630ebee48b3836cdc39bf5cd743e8084 (patch)
treec3c2e8c4c772dc8b11d31dfc9b065d96173a250d /todolists
parent9b59f7e1ad0653747dc6580bedc443c54df9d53f (diff)
downloadarchweb-6e9477ca630ebee48b3836cdc39bf5cd743e8084.tar.gz
archweb-6e9477ca630ebee48b3836cdc39bf5cd743e8084.zip
Unify spelling of 'Todo'
We used 'Todo', 'ToDo', and 'To-do' in different places. Unify them all to the first. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'todolists')
-rw-r--r--todolists/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/todolists/views.py b/todolists/views.py
index 8358e4c6..f176e39c 100644
--- a/todolists/views.py
+++ b/todolists/views.py
@@ -78,7 +78,7 @@ def add(request):
form = TodoListForm()
page_dict = {
- 'title': 'Add To-do List',
+ 'title': 'Add Todo List',
'form': form,
'submit_text': 'Create List'
}
@@ -117,7 +117,7 @@ def edit(request, list_id):
'packages': todo_list.package_names,
})
page_dict = {
- 'title': 'Edit To-do List "%s"' % todo_list.name,
+ 'title': 'Edit Todo List: %s' % todo_list.name,
'form': form,
'submit_text': 'Save List'
}
@@ -131,7 +131,7 @@ def delete_todolist(request, object_id):
def send_todolist_email(todo):
'''Sends an e-mail to the maintainer of a package notifying them that the
- package has been added to a to-do list'''
+ package has been added to a todo list'''
if not todo.pkg.maintainer:
return