Ignore:
Timestamp:
19 Jun 2015, 05:49:57 (9 years ago)
Author:
Henrik Bettermann
Message:

After careful consideration: plural is more appropriate than singular.

A student section has another meaning: https://en.wikipedia.org/wiki/Student_section

Location:
main/waeup.kofa/trunk/src/waeup/kofa/students
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py

    r13056 r13076  
    288288    grok.template('containermanagepage')
    289289    pnav = 4
    290     label = _('Manage student section')
     290    label = _('Manage students section')
    291291    search_button = _('Find student(s)')
    292292    remove_button = _('Remove selected')
  • main/waeup.kofa/trunk/src/waeup/kofa/students/interfaces.py

    r13031 r13076  
    179179class IStudentNavigation(IStudentNavigationBase):
    180180    """Interface needed for navigation and logging. This interface is
    181     implemented by all content classes in the student section.
     181    implemented by all content classes in the students section.
    182182    """
    183183    student = Attribute('Student object of context')
  • main/waeup.kofa/trunk/src/waeup/kofa/students/permissions.py

    r13026 r13076  
    1717##
    1818"""
    19 Permissions for the student section.
     19Permissions for the students section.
    2020"""
    2121import grok
    2222
    23 # Student section permissions
     23# Students section permissions
    2424
    2525class HandleStudent(grok.Permission):
  • main/waeup.kofa/trunk/src/waeup/kofa/students/tests/test_browser.py

    r13055 r13076  
    257257        self.assertEqual(self.browser.headers['Status'], '200 Ok')
    258258        self.assertEqual(self.browser.url, self.container_path)
    259         self.browser.getLink("Manage student section").click()
     259        self.browser.getLink("Manage students section").click()
    260260        self.assertEqual(self.browser.headers['Status'], '200 Ok')
    261261        self.assertEqual(self.browser.url, self.manage_container_path)
  • main/waeup.kofa/trunk/src/waeup/kofa/students/utils.py

    r13040 r13076  
    1616## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    1717##
    18 """General helper functions and utilities for the student section.
     18"""General helper functions and utilities for the students section.
    1919"""
    2020import grok
  • main/waeup.kofa/trunk/src/waeup/kofa/students/viewlets.py

    r12854 r13076  
    139139    grok.view(StudentsContainerPage)
    140140    grok.require('waeup.manageStudent')
    141     text = _('Manage student section')
     141    text = _('Manage students section')
    142142
    143143class StudentsContainerAddActionButton(AddActionButton):
  • main/waeup.kofa/trunk/src/waeup/kofa/students/vocabularies.py

    r12836 r13076  
    1616## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
    1717##
    18 """Vocabularies and sources for the student section.
     18"""Vocabularies and sources for the students section.
    1919"""
    2020from zope.component import getUtility, queryUtility
Note: See TracChangeset for help on using the changeset viewer.