forked from VORPCORE/vorp_stables-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguages.lua
500 lines (476 loc) · 20.9 KB
/
languages.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
Langs = {
Fr = {
Stable = "Écurie",
horse = "cheval",
cart = "charrette",
BuyAHorse = "Acheter un cheval",
BuyACart = "Acheter une charrette",
BuyEquipment = "Acheter de l'équipement",
BuyA = "Acheter un",
BuyA2 = "Acheter une",
BuyFor = "Acheter pour {price} $",
Equip = "Équiper",
DollarBeforeOrAfterPrice = "{price} $",
ModifyEquipment = "Modifier l'équipement",
RemoveEquipment = "Retirer l'équipement",
MyRides = "Mes montures",
Transfer = "Transférer",
RidesAwaitingTransfer = "Montures en attente de transfert",
FreeRide = "Relâcher",
to = "à",
EnterNameToConfirm = "Saisissez le nom de la monture pour confirmer",
Ok = "Ok",
Cancel = "Annuler",
Accept = "Accepter",
Refuse = "Refuser",
Active = "Actif",
ChooseAsActive = "Choisir comme {rideType} par défaut",
PricePlaceholder = "Définissez un prix pour la monture (défaut: 0)",
NamePlaceholder = "Rechercher un joueur par nom",
TransferRecap = "{playerName} vous offre {rideName} pour {price} $",
AmericanPaint = "American paint",
AmericanStandardBred = "Trotteur américain",
Andalusian = "Andalou",
Appaloosa = "Appaloosa",
Arabian = "Arabe",
Ardennes = "Ardennais",
Belgian = "Belge",
DutchWarmBlood = "Hollandais sang chaud",
HungarianHalfbred = "Demi-sang hongrois",
KentuckySaddle = "Saddlebred",
Kladruber = "Kladruber",
MisouriFoxTrotter = "Misouri fox trotter",
Morgan = "Morgan",
Mustang = "Mustang",
Nokota = "Nokota",
Shire = "Shire",
SuffolkPunch = "Suffolk punch",
TennesseeWalker = "Tennesse walker",
Thoroughbred = "Pur-sang",
Turkoman = "Turkoman",
Criollo = "Criollo",
Breton = "Breton",
NorfolkRoadster = "Trotteur Norfolk",
others = "Autres",
-- For the components translation, go into Data.Complements, and change the keys of the object,
-- it will be used as a label without breaking code
-- Just don't change the labels in Carts and Horse for they are actual game-code ids
PlaceHolderRideName = "Choisissez un nom pour votre monture",
TipNameTooShort = "Le nom doit faire 4 caractères minimum",
TipNoDefaultHorse = "Aucun cheval par défaut sélectionné",
TipNoDefaultCart = "Aucune charrette par défaut sélectionnée",
TipHorseOccupied = "Quelqu'un monte votre cheval!",
TipCartOccupied = "Quelqu'un est dans votre charrette",
TipStableFull = "Vos emplacement d'étable sont pleins",
TipCantAfford = "Vous n'avez pas assez d'argent",
TipAddedToStable = "L'objet a été ajouté à votre inventaire d'étable",
TipHorseFreed = "{horseName} a été relâché!",
TipOfferDeclined = "Vous avez décliné l'offre",
TipOfferAccepted = "Vous avez accepté l'offre et dépensé {price} $",
TipOfferStillOn = "L'offre est toujours valable",
TipChanged = "Changement effectué",
TipRidePurchased = "Vous avez acheté {rideName} pour ${price}",
TipOfferSent = "Votre offre a été enregistrée",
TipHorseDead = "Votre cheval est à terre",
TipHorseNearDeath = "Votre cheval semble être à bout de forces",
TipHorseDeadDefinitive = "Votre cheval a succombé à ses blessures",
TipSuccessfulBuyComp = "Vous avez acheté {0} pour {1}",
TipErrorOnPurchase = "Une erreur est survenue lors de l'achat",
TipErrorOnUpdate = "Une erreur est survenue lors du changement",
TipErrorOnAdd = "Erreur lors de l'ajout à l'inventaire de l'étable",
A_C_Horse_AmericanPaint_Greyovero = "Suro gris",
A_C_Horse_AmericanPaint_Overo = "Suro",
A_C_Horse_AmericanPaint_SplashedWhite = "Tâches blanches",
A_C_Horse_AmericanPaint_Tobiano = "Tobiano",
A_C_Horse_AmericanStandardbred_Black = "Noir",
A_C_Horse_AmericanStandardbred_Buckskin = "Daim",
A_C_Horse_AmericanStandardbred_PalominoDapple = "Palomino Pommelé",
A_C_Horse_AmericanStandardbred_SilverTailBuckskin = "Daim à queue argent",
A_C_Horse_Andalusian_DarkBay = "Bai sombre",
A_C_Horse_Andalusian_Perlino = "Perlino",
A_C_Horse_Andalusian_RoseGray = "Rose gris",
A_C_Horse_Appaloosa_BlackSnowflake = "Noir tacheté",
A_C_Horse_Appaloosa_Blanket = "Nappé",
A_C_Horse_Appaloosa_BrownLeopard = "Marron léopard",
A_C_Horse_Appaloosa_FewSpotted_PC = "Tâches éparses",
A_C_Horse_Appaloosa_Leopard = "Léopard",
A_C_Horse_Appaloosa_LeopardBlanket = "Nappé léopard",
A_C_Horse_Arabian_Black = "Noir",
A_C_Horse_Arabian_Grey = "Gris",
A_C_Horse_Arabian_RedChestnut = "Noisette rouge",
A_C_Horse_Arabian_RoseGreyBay = "Rose Grey Bay",
A_C_Horse_Arabian_WarpedBrindle_PC = "Voile bringé",
A_C_Horse_Arabian_White = "Blanc",
A_C_Horse_Ardennes_BayRoan = "Rouan Bai",
A_C_Horse_Ardennes_IronGreyRoan = "Rouan Gris ferreux",
A_C_Horse_Ardennes_StrawberryRoan = "Rouan fraise",
A_C_Horse_Belgian_BlondChestnut = "Blond noisette",
A_C_Horse_Belgian_MealyChestnut = "Pangaré noisette",
A_C_Horse_DutchWarmblood_ChocolateRoan = "Rouan chocolat",
A_C_Horse_DutchWarmblood_SealBrown = "Marron phoque",
A_C_Horse_DutchWarmblood_SootyBuckskin = "Daim Sooty",
A_C_Horse_HungarianHalfbred_DarkDappleGrey = "Pommelé sombre gris",
A_C_Horse_HungarianHalfbred_FlaxenChestnut = "Noisette lin",
A_C_Horse_HungarianHalfbred_LiverChestnut = "Livrée noisette",
A_C_Horse_HungarianHalfbred_PiebaldTobiano = "Tobiano pie",
A_C_Horse_KentuckySaddle_Black = "Noir",
A_C_Horse_KentuckySaddle_ButterMilkBuckskin_PC = "Daim laiteux",
A_C_Horse_KentuckySaddle_ChestnutPinto = "Pinto noisette",
A_C_Horse_KentuckySaddle_Grey = "Gris",
A_C_Horse_KentuckySaddle_SilverBay = "Bai argenté",
A_C_Horse_Kladruber_Black = "Noir",
A_C_Horse_Kladruber_Silver = "Argenté",
A_C_Horse_Kladruber_Cremello = "Cremello",
A_C_Horse_Kladruber_Grey = "Gris",
A_C_Horse_Kladruber_DappleRoseGrey = "Pommelé rose gris",
A_C_Horse_Kladruber_White = "Blanc",
A_C_Horse_MissouriFoxTrotter_AmberChampagne = "Champagne ambré",
A_C_Horse_MissouriFoxTrotter_SableChampagne = "Champagne sablé",
A_C_Horse_MissouriFoxTrotter_SilverDapplePinto = "Pinto pommelé argent",
A_C_Horse_Morgan_Bay = "Bai",
A_C_Horse_Morgan_BayRoan = "Rouan bai",
A_C_Horse_Morgan_FlaxenChestnut = "Noisette lin",
A_C_Horse_Morgan_LiverChestnut_PC = "Livrée noisette",
A_C_Horse_Morgan_Palomino = "Palomino",
A_C_Horse_MP_Mangy_Backup = "Vieux mangy",
A_C_Horse_Mustang_GoldenDun = "Dun doré",
A_C_Horse_Mustang_GrulloDun = "Grullo Dun",
A_C_Horse_Mustang_TigerStripedBay = "Bai tigré",
A_C_Horse_Mustang_WildBay = "Bai sauvage",
A_C_Horse_Nokota_BlueRoan = "Rouan bleu",
A_C_Horse_Nokota_ReverseDappleRoan = "Rouan pommelé",
A_C_Horse_Nokota_WhiteRoan = "Rouan blanc",
A_C_Horse_Shire_DarkBay = "Bai sombre",
A_C_Horse_Shire_LightGrey = "Gris clair",
A_C_Horse_Shire_RavenBlack = "Noir corneille",
A_C_Horse_SuffolkPunch_RedChestnut = "Noisette rouge",
A_C_Horse_SuffolkPunch_Sorrel = "Azelan",
A_C_Horse_TennesseeWalker_BlackRabicano = "Rabicano noir",
A_C_Horse_TennesseeWalker_Chestnut = "Noisette",
A_C_Horse_TennesseeWalker_DappleBay = "Bai pommelé",
A_C_Horse_TennesseeWalker_FlaxenRoan = "Rouan lin",
A_C_Horse_TennesseeWalker_MahoganyBay = "Bai acajou",
A_C_Horse_TennesseeWalker_RedRoan = "Rouan rouge",
A_C_Horse_TennesseeWalker_GoldPalomino_PC = "Palomino doré",
A_C_Horse_Thoroughbred_BlackChestnut = "Noisette noir",
A_C_Horse_Thoroughbred_BloodBay = "Bai écarlate",
A_C_Horse_Thoroughbred_Brindle = "Bringé",
A_C_Horse_Thoroughbred_DappleGrey = "Gris pommelé",
A_C_Horse_Thoroughbred_ReverseDappleBlack = "Noir pommelé",
A_C_Horse_Turkoman_DarkBay = "Bai sombre",
A_C_Horse_Turkoman_Gold = "Doré",
A_C_Horse_Turkoman_Silver = "Argenté",
A_C_Horse_Criollo_Dun = "Dun",
A_C_Horse_Criollo_MarbleSabino = "Marbre Sabino",
A_C_Horse_Criollo_BayFrameOvero = "Bai suro",
A_C_Horse_Criollo_BayBrindle = "Bai bringé",
A_C_Horse_Criollo_SorrelOvero = "Suro azelan",
A_C_Horse_Criollo_BlueRoanOvero = "Rouan suro bleu",
A_C_Horse_Breton_SteelGrey = "Gris métallisé (comme ma 207)",
A_C_Horse_Breton_MealyDapple = "Pangaré pommelé",
A_C_Horse_Breton_SealBrown = "Marron phoque",
A_C_Horse_Breton_GrulloDun = "Grullo Dun",
A_C_Horse_Breton_Sorrel = "Azelan",
A_C_Horse_Breton_RedRoan = "Rouan rouge",
A_C_Horse_NorfolkRoadster_Black = "Noir",
A_C_Horse_NorfolkRoadster_SpeckledGrey = "Gris mouchté",
A_C_Horse_NorfolkRoadster_PiebaldRoan = "Rouan pie",
A_C_Horse_NorfolkRoadster_RoseGrey = "Rose Gris",
A_C_Horse_NorfolkRoadster_DappledBuckskin = "Daim pommelé",
A_C_Horse_NorfolkRoadster_SpottedTricolor = "Ticolore tacheté",
A_C_HorseMulePainted_01 = "Zèbre (si si, je vous jure)",
A_C_HorseMule_01 = "Mule",
A_C_Donkey_01 = "Âne",
buggy = "Calèches",
chuckwagon = "Chucks",
wagon = "Charrettes",
coach = "Petites diligences",
stagecoach = "Diligences",
logwagon = "Charrettes à bois",
supplywagon = "Charrettes de marchand",
oilWagon = "Charrette à pétrole",
huntercart01 = "Charrette de chasseur",
ArmySupplyWagon = "Charrette de l'armée",
buggy01 = "Calèche 1",
buggy02 = "Calèche 2",
buggy03 = "Calèche 3",
cart01 = "Charrette 1",
cart02 = "Charrette 2",
cart03 = "Charrette 3",
cart04 = "Charrette 4",
cart05 = "Charrette 5",
cart06 = "Charrette 6",
cart07 = "Charrette 7",
cart08 = "Charrette 8",
chuckwagon000x = "Chuck 1",
chuckwagon002x = "Chuck 2",
gatchuck = "Gat Chuck 3",
utilliwag = "Utilitaire 4",
wagon02x = "Charrette 5",
wagon03x = "Charrette 6",
wagon04x = "Charrette 7",
wagon05x = "Charrette 8",
wagon06x = "Charrette 9",
coach2 = "Petite diligence 1",
coach3 = "Petite diligence 2",
coach4 = "Petite diligence 3",
coach5 = "Petite diligence 4",
coach6 = "Petite diligence 5",
coal_wagon = "Charrette à charbon",
logwagon2 = "Charrette à bois 2",
oilWagon01x = "Charrette à pétrole 1",
oilWagon02x = "Charrette à pétrole 2",
stagecoach001x = "Diligence 1",
stagecoach002x = "Diligence 2",
stagecoach003x = "Diligence 3",
stagecoach004x = "Diligence 4",
stagecoach005x = "Diligence 5",
stagecoach006x = "Diligence 6",
supplywagon2 = "Charrette de marchand 2",
wagonarmoured01x = "Charrette blindée",
wagonCircus01x = "Charrette de cirque 1",
wagonCircus02x = "Charrette de cirque 2",
wagondairy01x = "Charrette laitière",
wagondoc01x = "Charrette médicale",
wagonPrison01x = "Panier à salade",
wagontraveller01x = "Charrette de voyageur",
wagonwork01x = "Charrette de boulanger"
},
En = {
Stable = "Stable",
horse = "horse",
cart = "cart",
BuyAHorse = "Buy a horse",
BuyACart = "Buy a cart",
BuyEquipment = "Buy some equipment",
BuyA = "Buy a",
BuyA2 = "Buy a",
BuyFor = "Buy for ${price}",
Equip = "Equip",
DollarBeforeOrAfterPrice = "$ {price}",
ModifyEquipment = "Change horse equipment",
RemoveEquipment = "Remove horse equipment",
MyRides = "My rides",
Transfer = "Transfer",
RidesAwaitingTransfer = "Rides awaiting transfer",
FreeRide = "Free",
to = "to",
EnterNameToConfirm = "Enter the name of the ride to confirm",
Ok = "Ok",
Cancel = "Cancel",
Accept = "Accept",
Refuse = "Decline",
Active = "Active",
ChooseAsActive = "Choose as active {rideType}",
PricePlaceholder = "Set a price for the transfer (defaults to 0)",
NamePlaceholder = "Search player by name",
TransferRecap = "{playerName} offers you {rideName} for ${price}",
AmericanPaint = "American paint",
AmericanStandardBred = "American standard bred",
Andalusian = "Andalusian",
Appaloosa = "Appaloosa",
Arabian = "Arabian",
Ardennes = "Ardennes",
Belgian = "Belgian",
DutchWarmBlood = "Dutch warm blood",
HungarianHalfbred = "Hungarian halfbred",
KentuckySaddle = "Kentucky saddle",
Kladruber = "Kladruber",
MisouriFoxTrotter = "Misouri fox trotter",
Morgan = "Morgan",
Mustang = "Mustang",
Nokota = "Nokota",
Shire = "Shire",
SuffolkPunch = "Suffolk punch",
TennesseeWalker = "Tennesse walker",
Thoroughbred = "Thoroughbred",
Turkoman = "Turkoman",
Criollo = "Criollo",
Breton = "Breton",
NorfolkRoadster = "Norfolk roadster",
buggy = "Buggies",
chuckwagon = "Chuck wagons",
wagon = "Wagons",
coach = "Coaches",
stagecoach = "Stagecoaches",
logwagon = "Log wagons",
supplywaon = "Supply wagons",
others = "others",
-- For the components translation, go into Data.Complements, and change the keys of the object,
-- it will be used as a label without breaking code
-- Just don't change the labels in Carts and Horse for they are actual game-code ids
PlaceHolderRideName = "Choose a name for this ride",
TipNameTooShort = "The name must be at least 4 characters long",
TipNoDefaultHorse = "No default horse selected",
TipNoDefaultCart = "No default cart selected",
TipHorseOccupied = "Your horse is being mounted by somebody!",
TipCartOccupied = "Somebody is in your cart",
TipStableFull = "Your stable is full",
TipCantAfford = "You can't afford this",
TipAddedToStable = "The item was added to you stable inventory",
TipHorseFreed = "{horseName} was released!",
TipOfferDeclined = "You have declined the offer",
TipOfferAccepted = "You have accepted the offer for ${price}",
TipOfferStillOn = "The offer is still on",
TipChanged = "Change executed",
TipRidePurchased = "You have purchased {rideName} for ${price}",
TipOfferSent = "Your offer has been registered",
TipHorseDead = "Your horse is down",
TipHorseNearDeath = "Your horse looks really tired",
TipHorseDeadDefinitive = "Your horse can't be reanimated",
TipSuccessfulBuyComp = "You have bought a {0} for ${1}",
TipErrorOnPurchase = "An error occurred on purchase",
TipErrorOnUpdate = "An error occurred when updating your default ride",
TipErrorOnAdd = "Ann error occurred when updating inventory",
A_C_Horse_AmericanPaint_Greyovero = "Greyovero",
A_C_Horse_AmericanPaint_Overo = "Overo",
A_C_Horse_AmericanPaint_SplashedWhite = "Splashed White",
A_C_Horse_AmericanPaint_Tobiano = "Tobiano",
A_C_Horse_AmericanStandardbred_Black = "Black",
A_C_Horse_AmericanStandardbred_Buckskin = "Buckskin",
A_C_Horse_AmericanStandardbred_PalominoDapple = "Palomino Dapple",
A_C_Horse_AmericanStandardbred_SilverTailBuckskin = "Silver Tail Buckskin",
A_C_Horse_Andalusian_DarkBay = "Dark Bay",
A_C_Horse_Andalusian_Perlino = "Perlino",
A_C_Horse_Andalusian_RoseGray = "Rose Gray",
A_C_Horse_Appaloosa_BlackSnowflake = "Black Snowflake",
A_C_Horse_Appaloosa_Blanket = "Blanket",
A_C_Horse_Appaloosa_BrownLeopard = "Brown Leopard",
A_C_Horse_Appaloosa_FewSpotted_PC = "Few Spotted",
A_C_Horse_Appaloosa_Leopard = "Leopardo",
A_C_Horse_Appaloosa_LeopardBlanket = "Leopard Blanket",
A_C_Horse_Arabian_Black = "Black",
A_C_Horse_Arabian_Grey = "Grey",
A_C_Horse_Arabian_RedChestnut = "Red Chestnut",
A_C_Horse_Arabian_RoseGreyBay = "Rose Grey Bay",
A_C_Horse_Arabian_WarpedBrindle_PC = "Warped Brindle",
A_C_Horse_Arabian_White = "White",
A_C_Horse_Ardennes_BayRoan = "Bay Roan",
A_C_Horse_Ardennes_IronGreyRoan = "Iron Grey Roan",
A_C_Horse_Ardennes_StrawberryRoan = "Strawberry Roan",
A_C_Horse_Belgian_BlondChestnut = "Blond Chestnut",
A_C_Horse_Belgian_MealyChestnut = "Mealy Chestnut",
A_C_Horse_DutchWarmblood_ChocolateRoan = "Chocolate Roan",
A_C_Horse_DutchWarmblood_SealBrown = "Seal Brown",
A_C_Horse_DutchWarmblood_SootyBuckskin = "Sooty Buckskin",
A_C_Horse_HungarianHalfbred_DarkDappleGrey = "Dark Dapple Grey",
A_C_Horse_HungarianHalfbred_FlaxenChestnut = "Flaxen Chestnut",
A_C_Horse_HungarianHalfbred_LiverChestnut = "Liver Chestnut",
A_C_Horse_HungarianHalfbred_PiebaldTobiano = "Piebald Tobiano",
A_C_Horse_KentuckySaddle_Black = "Black",
A_C_Horse_KentuckySaddle_ButterMilkBuckskin_PC = "Butter Milk Buckskin",
A_C_Horse_KentuckySaddle_ChestnutPinto = "Chestnut Pinto",
A_C_Horse_KentuckySaddle_Grey = "Grey",
A_C_Horse_KentuckySaddle_SilverBay = "Silver Bay",
A_C_Horse_Kladruber_Black = "Black",
A_C_Horse_Kladruber_Silver = "Silver",
A_C_Horse_Kladruber_Cremello = "Cremello",
A_C_Horse_Kladruber_Grey = "Grey",
A_C_Horse_Kladruber_DappleRoseGrey = "Dapple Rose Grey",
A_C_Horse_Kladruber_White = "White",
A_C_Horse_MissouriFoxTrotter_AmberChampagne = "Amber Champagne",
A_C_Horse_MissouriFoxTrotter_SableChampagne = "Sable Champagne",
A_C_Horse_MissouriFoxTrotter_SilverDapplePinto = "Silver Dapple Pinto",
A_C_Horse_Morgan_Bay = "Bay",
A_C_Horse_Morgan_BayRoan = "Bay Roan",
A_C_Horse_Morgan_FlaxenChestnut = "Flaxen Chestnut",
A_C_Horse_Morgan_LiverChestnut_PC = "Liver Chestnut",
A_C_Horse_Morgan_Palomino = "Palomino",
A_C_Horse_MP_Mangy_Backup = "Old Penco",
A_C_Horse_Mustang_GoldenDun = "Golden Dun",
A_C_Horse_Mustang_GrulloDun = "Grullo Dun",
A_C_Horse_Mustang_TigerStripedBay = "Tiger Striped Bay",
A_C_Horse_Mustang_WildBay = "Wild Bay",
A_C_Horse_Nokota_BlueRoan = "Blue Roan",
A_C_Horse_Nokota_ReverseDappleRoan = "Reverse Dapple Roan",
A_C_Horse_Nokota_WhiteRoan = "White Roan",
A_C_Horse_Shire_DarkBay = "Dark Bay",
A_C_Horse_Shire_LightGrey = "Light Grey",
A_C_Horse_Shire_RavenBlack = "Raven Black",
A_C_Horse_SuffolkPunch_RedChestnut = "Red Chestnut",
A_C_Horse_SuffolkPunch_Sorrel = "Sorrel",
A_C_Horse_TennesseeWalker_BlackRabicano = "Black Rabicano",
A_C_Horse_TennesseeWalker_Chestnut = "Chestnut",
A_C_Horse_TennesseeWalker_DappleBay = "Dapple Bay",
A_C_Horse_TennesseeWalker_FlaxenRoan = "Flaxen Roan",
A_C_Horse_TennesseeWalker_MahoganyBay = "Mahogany Bay",
A_C_Horse_TennesseeWalker_RedRoan = "Red Roan",
A_C_Horse_TennesseeWalker_GoldPalomino_PC = "Gold Palomino",
A_C_Horse_Thoroughbred_BlackChestnut = "Black Chestnut",
A_C_Horse_Thoroughbred_BloodBay = "Blood Bay",
A_C_Horse_Thoroughbred_Brindle = "Brindle",
A_C_Horse_Thoroughbred_DappleGrey = "Dapple Grey",
A_C_Horse_Thoroughbred_ReverseDappleBlack = "Reverse Dapple Black",
A_C_Horse_Turkoman_DarkBay = "Dark Bay",
A_C_Horse_Turkoman_Gold = "Gold",
A_C_Horse_Turkoman_Silver = "Silver",
A_C_Horse_Criollo_Dun = "Dun",
A_C_Horse_Criollo_MarbleSabino = "Marble Sabino",
A_C_Horse_Criollo_BayFrameOvero = "Bay Frame Overo",
A_C_Horse_Criollo_BayBrindle = "Bay Brindle",
A_C_Horse_Criollo_SorrelOvero = "Sorrel Overo",
A_C_Horse_Criollo_BlueRoanOvero = "Blue Roan Overo",
A_C_Horse_Breton_SteelGrey = "Steel Grey",
A_C_Horse_Breton_MealyDapple = "Mealy Dapple",
A_C_Horse_Breton_SealBrown = "Seal Brown",
A_C_Horse_Breton_GrulloDun = "Grullo Dun",
A_C_Horse_Breton_Sorrel = "Sorrel",
A_C_Horse_Breton_RedRoan = "Red Roan",
A_C_Horse_NorfolkRoadster_BLACK = "Black",
A_C_Horse_NorfolkRoadster_SPECKLEDGREY = "Speckled Grey",
A_C_Horse_NorfolkRoadster_PIEBALDROAN = "Pieblad Roan",
A_C_Horse_NorfolkRoadster_ROSEGREY = "Rose Grey",
A_C_Horse_NorfolkRoadster_DAPPLEDBUCKSKIN = "Dapple Buckskin",
A_C_Horse_NorfolkRoadster_SPOTTEDTRICOLOR = "Spotted Tricolor",
A_C_HorseMulePainted_01 = "Zebra",
A_C_HorseMule_01 = "Mule",
A_C_Donkey_01 = "Donkey",
huntercart01 = "Hunting cart",
ArmySupplyWagon = "Army Supply Wagon",
buggy01 = "Buggy 1",
buggy02 = "Buggy 2",
buggy03 = "Buggy 3",
cart01 = "Cart 1",
cart02 = "Cart 2",
cart03 = "Cart 3",
cart04 = "Cart 4",
cart05 = "Cart 5",
cart06 = "Cart 6",
cart07 = "Cart 7",
cart08 = "Cart 8",
chuckwagon000x = "Chuck Wagon 1",
chuckwagon002x = "Chuck Wagon 2",
gatchuck = "Gat Chuck 3",
utilliwag = "Utillity Wagon 4",
wagon02x = "Wagon 5",
wagon03x = "Wagon 6",
wagon04x = "Wagon 7",
wagon05x = "Wagon 8",
wagon06x = "Wagon 9",
coach2 = "Coach 1",
coach3 = "Coach 2",
coach4 = "Coach 3",
coach5 = "Coach 4",
coach6 = "Coach 5",
coal_wagon = "Coal Wagon",
logwagon2 = "Log Wagon 2",
oilWagon01x = "Oil Wagon 1",
oilWagon02x = "Oil Wagon 2",
stagecoach001x = "Stage Coach 1",
stagecoach002x = "Stage Coach 2",
stagecoach003x = "Stage Coach 3",
stagecoach004x = "Stage Coach 4",
stagecoach005x = "Stage Coach 5",
stagecoach006x = "Stage Coach 6",
supplywagon = "Supply Wagon 1",
supplywagon2 = "Supply Wagon 2",
wagonarmoured01x = "Armoured Wagon",
wagonCircus01x = "Circus Wagon 1",
wagonCircus02x = "Circus Wagon 2",
wagondairy01x = "Dairy Wagon",
wagondoc01x = "Doctor Wagon",
wagonPrison01x = "Prison Wagon",
wagontraveller01x = "Traveller Wagon",
wagonwork01x = "Baker Wagon"
}
}