Changes between Initial Version and Version 1 of Ticket #47125, comment 10
- Timestamp:
- 08/28/2023 10:09:10 AM (13 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #47125, comment 10
initial v1 2 2 3 3 Also, making the search case sensitive I found a couple places where the letter 'n' of the word 'new' is lowercase: 4 ``` 4 5 6 {{{ 5 7 __( 'Add new Pattern' ) 6 8 _e( 'Add new Comment' ) 7 ``` 9 }}} 10 8 11 9 12 This is inconsistent with the well established pattern in WordPress, where all similar strings use title case for the word 'New', for example: 10 13 11 ``` 14 {{{ 12 15 __( 'Add New Template' ) 13 ``` 16 }}} 17 18 'Add new Pattern' was recently Introduced in [56030] 14 19 15 20 Adding a screenshot to illustrate some examples of what the current patch does.