Typo in the "Network and Services Policy" UI panel
Bug #1649455 reported by
Desh Shukla
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Group Based Policy UI |
New
|
Undecided
|
Unassigned |
Bug Description
There is an extra quote in the Network and Services Panel Name, all thats required for the change to occur is update the file group-based-
from
class NetworkPolicy(
name = _("Network and Services' Policy")
slug = "network_policy"
to
class NetworkPolicy(
name = _("Network and Services Policy")
slug = "network_policy"
To post a comment you must log in.
Believe it or not, this is actually not a typo. :-) This is written to the grammar form to drop the 's' after an apostrophe to show plural possession [1]. So, the following:
Network and Services's Policy
is being written as:
Network and Services' Policy
[1] http:// www.grammarbook .com/punctuatio n/apostro. asp (See rule 2a)