-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vehicle_part name to object #38699
vehicle_part name to object #38699
Conversation
@@ -2,7 +2,7 @@ | |||
{ | |||
"id": "aisle_lights", | |||
"type": "vehicle_part", | |||
"name": "aisle lights", | |||
"name": { "str": "aisle lights" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lights
and harness
should have plural forms. Or not?
@@ -220,7 +220,7 @@ | |||
{ | |||
"id": "lit_aisle_horizontal", | |||
"type": "vehicle_part", | |||
"name": "aisle with lights", | |||
"name": { "str": "aisle with lights" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"name": { "str": "aisle with lights" }, | |
"name": { "str": "aisle with lights", "str_pl": "aisles with lights" }, |
@@ -2,7 +2,7 @@ | |||
{ | |||
"id": "aisle_lights", | |||
"type": "vehicle_part", | |||
"name": "aisle lights", | |||
"name": { "str": "aisle lights" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"name": { "str": "aisle lights" }, | |
"name": { "str": "aisle lights", "str_pl": "aisle lights" }, |
@@ -1851,7 +1851,7 @@ | |||
{ | |||
"type": "vehicle_part", | |||
"id": "seatbelt_heavyduty", | |||
"name": "5-point harness", | |||
"name": { "str": "5-point harness" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"name": { "str": "5-point harness" }, | |
"name": { "str": "5-point harness", "str_pl": "5-point harnesses" }, |
@@ -2263,7 +2263,7 @@ | |||
{ | |||
"type": "vehicle_part", | |||
"id": "craft_rig", | |||
"name": "FOODCO kitchen buddy", | |||
"name": { "str": "FOODCO kitchen buddy" }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"name": { "str": "FOODCO kitchen buddy" }, | |
"name": { "str": "FOODCO kitchen buddy", "str_pl": "FOODCO kitchen buddies" }, |
Cannot add plurals am afraid:
This pr should be merged as-is unless there is a typo I missed |
Sorry for the confusion. It just looks unusual. |
Summary
SUMMARY: none
Purpose of change
Contributes to #36110 and #36611
Describe the solution
Change name to object
Describe alternatives you've considered
Not changing
Testing