Changes between Initial Version and Version 3 of Ticket #29326


Ignore:
Timestamp:
Apr 14, 2018, 10:56:21 PM (6 years ago)
Author:
Byeong Gyu Choi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29326

    • Property Cc Byeong Gyu Choi added
  • Ticket #29326 – Description

    initial v3  
    11For `verbose_name_plural` option in django Model Meta, django currently appends "s" when `verbose_name` is defined and `verbose_name_plural` is not.
     2However, I think that supporting auto-suffixing for irregular plurals, such as `categories`, would be good idea.
    23
    3 However, I think that supporting auto-suffixing for irregular plurals, such as `categories`, would be good idea.
     4Since there exists countless irregular English plurals, rather than including whole dictionary of all English plurals, I thought at first, adding support for common rules of forming plurals would be decent idea. For instance:
     5
     6- adding 'es' support,
     7- adding support for nouns ending with 'y'
     8- etc.
     9
     10https://www.grammarly.com/blog/plural-nouns/ 
     11I'm not sure about the link above is appropriate reference, but I couldn't find much better one. 
Back to Top