Skip to content

Commit e865b65

Browse files
committed
(RV) More options
1 parent 68355ff commit e865b65

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

road_vehicle/lang/english-uk.lng

+11
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,17 @@ STR_PARAM_NIGHT_MODE_AUTO_DETECT:Auto Detect
1313
STR_PARAM_NIGHT_MODE_DISABLED :Disabled
1414
STR_PARAM_NIGHT_MODE_ENABLED :Enabled
1515

16+
STR_PARAM_ROSTER :Roster
17+
STR_PARAM_ROSTER_DESC :Choose the roster of vehicles
18+
STR_PARAM_ALL :China
19+
STR_PARAM_DOVEMERE :Wuhu
20+
STR_PARAM_NORBURY :Beijing
21+
22+
STR_PARAM_EARLY_IMPORTED_VEHICLES :Early Imported Vehicles
23+
STR_PARAM_EARLY_IMPORTED_VEHICLES_DESC :Whether to include imported vehicles for the early game
24+
STR_PARAM_EARLY_IMPORTED_VEHICLES_DISABLED:Disabled
25+
STR_PARAM_EARLY_IMPORTED_VEHICLES_ENABLED:Enabled
26+
1627
STR_RV_HAPPYONE_BUS_NAME :Ford F-60 Canadian Military Pattern Combination Bus (gasoline)
1728
STR_RV_RIME_NAME :Songhuajiang Type-57 Bus (gasoline)
1829
STR_RV_LONGRIVER_NAME :Changjiang CJ640B Bus (gasoline)

road_vehicle/lib/parameters.py

+18
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,23 @@
1212
},
1313
),
1414
Parameter("NIGHT_MODE", 0, {0: "AUTO_DETECT", 1: "ENABLED", 2: "DISABLED"}),
15+
# FIXME: change the order after migrating the code
16+
Parameter(
17+
"ROSTER",
18+
0,
19+
{
20+
0: "ALL",
21+
1: "DOVEMERE",
22+
2: "NORBURY",
23+
},
24+
),
25+
Parameter(
26+
"EARLY_IMPORTED_VEHICLES",
27+
1,
28+
{
29+
0: "DISABLED",
30+
1: "ENABLED",
31+
},
32+
),
1533
]
1634
)

0 commit comments

Comments
 (0)