Skip to content

Commit

Permalink
refactor(locale): enhance en vehicle manufacturers (#3187)
Browse files Browse the repository at this point in the history
  • Loading branch information
suyashgulati authored Oct 17, 2024
1 parent 017becf commit 858f8d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions src/locales/en/vehicle/manufacturer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ export default [
'Kia',
'Lamborghini',
'Land Rover',
'MG',
'Mahindra & Mahindra',
'Maruti',
'Maserati',
'Mazda',
'Mercedes Benz',
Expand All @@ -33,9 +36,11 @@ export default [
'Renault',
'Rivian',
'Rolls Royce',
'Skoda',
'Smart',
'Subaru',
'Suzuki',
'Tata',
'Tesla',
'Toyota',
'Vauxhall',
Expand Down
8 changes: 4 additions & 4 deletions test/modules/__snapshots__/vehicle.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ exports[`vehicle > 42 > color 1`] = `"lime"`;

exports[`vehicle > 42 > fuel 1`] = `"Electric"`;

exports[`vehicle > 42 > manufacturer 1`] = `"Hyundai"`;
exports[`vehicle > 42 > manufacturer 1`] = `"Jeep"`;

exports[`vehicle > 42 > model 1`] = `"Durango"`;

exports[`vehicle > 42 > type 1`] = `"Extended Cab Pickup"`;

exports[`vehicle > 42 > vehicle 1`] = `"Hyundai Wrangler"`;
exports[`vehicle > 42 > vehicle 1`] = `"Jeep Wrangler"`;

exports[`vehicle > 42 > vin 1`] = `"CYRK551VKPAZ82113"`;

Expand Down Expand Up @@ -42,13 +42,13 @@ exports[`vehicle > 1337 > color 1`] = `"indigo"`;

exports[`vehicle > 1337 > fuel 1`] = `"Electric"`;

exports[`vehicle > 1337 > manufacturer 1`] = `"Ferrari"`;
exports[`vehicle > 1337 > manufacturer 1`] = `"Fiat"`;

exports[`vehicle > 1337 > model 1`] = `"Challenger"`;

exports[`vehicle > 1337 > type 1`] = `"Coupe"`;

exports[`vehicle > 1337 > vehicle 1`] = `"Ferrari Aventador"`;
exports[`vehicle > 1337 > vehicle 1`] = `"Fiat Aventador"`;

exports[`vehicle > 1337 > vin 1`] = `"859FAH8ZR3JL19477"`;

Expand Down

0 comments on commit 858f8d0

Please sign in to comment.