-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings.lua
68 lines (56 loc) · 4.61 KB
/
strings.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
function data()
return {
en = {
["mod_name"] = "DB Facs 124 Bogie bulk goods wagon",
["mod_desc"] = "The wagons, originally designated Eads-y and procured by the Deutsche Reichsbahn from 1978 onwards, are intended for the transport of bulk goods that are insensitive to moisture. The loading space has the shape of several funnels standing next to each other. The gravity of the load is used for the unloading process. The discharge openings with round slides allow the wagon to be unloaded completely to one side or the other. The swivelling discharge chutes allow bunker unloading.",
["Fake_tamns_wagen"] = "Enable Facs 124 Fake Versions?",
["option_fake_tamns_desc"] = "Should the fake versions of the Facs 124 be available in the game?",
["sound_check"] = "Activate custom sound?",
["option_sound_check"] = "Should the extra sound be activated?",
["Facs124_menu"] = "Facs 124",
["Eads-y_dr_name"] = "Eads-y DR (1978)",
["Eads-y_dr_desc"] = "The first wagons were built in France on behalf of the Deutsche Reichsbahn from 1978. The freight wagons are suitable for transporting loads such as sand, gravel, ore or coal.",
["Facs124_dr_name"] = "Facs DR (1980)",
["Facs124_dr_desc"] = "From 1980 onwards, the wagons originally designated as Eads-y were listed as Facs according to UIC guidelines. Their use remained the same.",
["Facs124_db_name"] = "Facs 124 DB (1991)",
["Facs124_db_desc"] = "After the reunification, the Facs 124 also came to the Deutsche Bundesbahn.",
["Facs124_dbag_name"] = "Facs 124 DB AG (1994)",
["Facs124_dbag_desc"] = "After the founding of DB AG, the Facs 124 continued to be used with the new logo.",
["Facs124_vr_name"] = "Facs 124 traffic red DB AG (2007)",
["Facs124_vr_desc"] = "Later on, the cars were also repainted in traffic red. So far, some of them are still in use.",
--- Fake ---
["Facs124_menu_fake"] = "Fake - Facs 124 Fake",
["Eads-y_dr_name_fake"] = "Fake - Eads-y DR (1978)",
["Facs124_dr_name_fake"] = "Fake - Facs DR (1980)",
["Facs124_db_name_fake"] = "Fake - Facs 124 DB (1991)",
["Facs124_dbag_name_fake"] = "Fake - Facs 124 DB AG (1994)",
["Facs124_vr_name_fake"] = "Fake - Facs 124 traffic red DB AG (2007)",
},
de = {
["mod_name"] = "Facs 124 Drehgestell-Schüttgutwagen",
["mod_desc"] = "Die ursprünglich als Eads-y bezeichneten, von der Deutschen Reichsbahn ab 1978 beschafften Wagen sind zur Beförderung von Nässe unempfindlichem Schüttgut vorgesehen. Der Laderaum hat die Form mehrerer nebeneinander stehender Trichter. Für den Entladevorgang wird die Schwerkraft des Ladegutes genutzt. Die Auslauföffnungen mit Rundschiebern ermöglichen die restlose Entladung des Wagens nach der einen oder der anderen Seite. Die schwenkbaren Auslaufrutschen gestatten eine Bunkerentladung.",
["Fake_facs124_wagen"] = "Facs124 Fake-Versionen aktivieren?",
["option_fake_facs124_desc"] = "Sollen die Fake-Versionen der Facs 124 verfügbar sein im Spiel?",
["sound_check"] = "Eigenes Soundset aktivieren?",
["option_sound_check"] = "Soll der extra Sound aktiviert sein?",
["Facs124_menu"] = "Facs 124",
["Eads-y_dr_name"] = "Eads-y DR (1978)",
["Eads-y_dr_desc"] = "Die ersten Wagen wurden im Auftrag der Deutschen Reichsbahn ab 1978 in Frankreich gebaut. Die Güterwagen sind geeignet zur Beförderung vom Ladegut wie Sand, Kies, Erz oder Kohle.",
["Facs124_dr_name"] = "Facs DR (1980)",
["Facs124_dr_desc"] = "Ab dem Jahr 1980 wurden die ursprünglich als Eads-y bezeichneten Wagen nach UIC-Richtline als Facs geführt. Ihre Verwendung blieb gleich.",
["Facs124_db_name"] = "Facs 124 DB (1991)",
["Facs124_db_desc"] = "Nach der Wende kamen die Facs 124 auch zur Deutschen Bundesbahn.",
["Facs124_dbag_name"] = "Facs 124 DB AG (1994)",
["Facs124_dbag_desc"] = "Nach Gründung der DB AG wurden die Facs 124 weiterverwendet mit dem neuen Logo.",
["Facs124_vr_name"] = "Facs 124 verkehrsrot DB AG (2007)",
["Facs124_vr_desc"] = "Im späteren Verlauf wurden die Wagen auch mal in verkehrsrot umlackiert. Bisher sind immer noch einige im Einsatz.",
--- Fake ---
["Facs124_menu_fake"] = "Fake - Facs 124",
["Eads-y_dr_name_fake"] = "Fake - Eads-y DR (1978)",
["Facs124_dr_name_fake"] = "Fake - Facs DR (1980)",
["Facs124_db_name_fake"] = "Fake - Facs 124 DB (1991)",
["Facs124_dbag_name_fake"] = "Fake - Facs 124 DB AG (1994)",
["Facs124_vr_name_fake"] = "Fake - Facs 124 verkehrsrot DB AG (2007)",
},
}
end