Skip to content

Commit

Permalink
Added car_inside, damaged_car_inside and handle_back_center vehicle p…
Browse files Browse the repository at this point in the history
…arts
  • Loading branch information
souyahia-monk committed Sep 9, 2024
1 parent ef206ba commit e1a97f7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 6 deletions.
30 changes: 24 additions & 6 deletions packages/common/src/i18n/translations/vehicleParts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -442,16 +442,34 @@ export const vehiclePartLabels: Record<VehiclePart, TranslationObject> = {
de: 'Kofferraum',
nl: 'Kofferbak',
},
[VehiclePart.BACKGROUND]: {
en: 'Background',
fr: 'Arrière-plan',
de: 'Hintergrund',
nl: 'Achtergrond',
},
[VehiclePart.CAR_INSIDE]: {
en: 'Car Inside',
fr: 'Intérieur',
de: 'Auto innen',
nl: 'Auto binnen',
},
[VehiclePart.DAMAGED_CAR_INSIDE]: {
en: 'Damaged Car Inside',
fr: 'Intérieur endommagé',
de: 'Beschädigtes Auto innen',
nl: 'Beschadigde auto binnen',
},
[VehiclePart.HANDLE_BACK_CENTER]: {
en: 'Handle Back Center',
fr: 'Poignée arrière centre',
de: 'Griff Rückseite Mitte',
nl: 'Handgreep Terug Midden',
},
[VehiclePart.IGNORE]: {
en: 'IGNORE',
fr: 'IGNORE',
de: 'IGNORE',
nl: 'IGNORE',
},
[VehiclePart.BACKGROUND]: {
en: 'BACKGROUND',
fr: 'BACKGROUND',
de: 'BACKGROUND',
nl: 'BACKGROUND',
},
};
3 changes: 3 additions & 0 deletions packages/types/src/state/part.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ export enum VehiclePart {
WIPER_BACK = 'wiper_back',
WIPER_FRONT = 'wiper_front',
WHEEL = 'wheel',
CAR_INSIDE = 'car_inside',
DAMAGED_CAR_INSIDE = 'damaged_car_inside',
HANDLE_BACK_CENTER = 'handle_back_center',
}

/**
Expand Down

0 comments on commit e1a97f7

Please sign in to comment.