-
Notifications
You must be signed in to change notification settings - Fork 1
/
strings.py
16 lines (16 loc) · 964 Bytes
/
strings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cannot_change_category = 'Category cannot be changed'
cannot_change_state = 'State cannot be changed'
cannot_change_type = 'Type cannot be changed'
category_not_found = 'Category does not exist'
criterion_not_found = 'Criterion does not exist'
invalid_state = 'State code is invalid'
link_not_found = 'Link does not exist'
require_link_type = 'type is required to create a new link. type must be one of ("resource_link", "honorable_mention", or "innovative_policy_idea")' # noqa: E501
invalid_link_type = 'type must be one of ("resource_link", "honorable_mention", or "innovative_policy_idea")' # noqa: E501
invalid_grade = 'Grades must be one of (-1, 0, 1, 2, or 3)'
form_not_found = 'Form does not exist'
internal_server_error = 'Internal server error'
invalid_meets_criterion = 'meets_criterion must be one of ("yes", "no", or "maybe")'
resource_link = 'resource_link'
honorable_mention = 'honorable_mention'
innovative_policy_idea = 'innovative_policy_idea'