Skip to content
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

refactor(locale): enhance en vehicle manufacturers #3187

Merged
merged 5 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 Motor',
'Mahindra & Mahindra',
'Maruti Suzuki',
'Maserati',
'Mazda',
'Mercedes Benz',
Expand All @@ -33,9 +36,11 @@ export default [
'Renault',
'Rivian',
'Rolls Royce',
'Skoda',
'Smart',
'Subaru',
'Suzuki',
'Tata Motors',
'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