app/soc/views/helper/params.py
changeset 652 02323664d532
parent 642 671dc971c3d1
child 660 5a381b290691
--- a/app/soc/views/helper/params.py	Tue Dec 02 22:03:46 2008 +0000
+++ b/app/soc/views/helper/params.py	Tue Dec 02 22:04:15 2008 +0000
@@ -34,9 +34,12 @@
 from soc.views.helper import redirects
 
 
-LIST_DESCRIPTION_FMT = ugettext_lazy(
+DEF_LIST_DESCRIPTION_FMT = ugettext_lazy(
     'List of %(name_plural)s in Google Open Source Programs.')
 
+DEF_CREATE_INSTRUCTION_MSG_FMT = ugettext_lazy(
+      'Please use this form to select a %(name).')
+
 DEF_SUBMIT_MSG_PARAM_NAME = 's'
 DEF_SUBMIT_MSG_PROFILE_SAVED = 0
 
@@ -136,7 +139,7 @@
       'list_heading': 'heading',
       }
 
-  new_params['list_description'] = LIST_DESCRIPTION_FMT % params
+  new_params['list_description'] = DEF_LIST_DESCRIPTION_FMT % params
   new_params['save_message'] = [ugettext_lazy('Profile saved.')]
   new_params['submit_msg_param_name'] = DEF_SUBMIT_MSG_PARAM_NAME
   new_params['edit_params'] = {