16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 23:19:19 +02:00

reformat: remove redundant qualifiers

This commit is contained in:
jerrrrycho
2026-07-04 05:34:23 +02:00
parent 20e7a99516
commit cf9fb07800
98 changed files with 2290 additions and 2290 deletions

View File

@@ -354,18 +354,18 @@ const std::string& locale::coupling_name(int c)
{
static std::unordered_map<coupling, std::string> coupling_names =
{
{ coupling::faux, STRN("faux") },
{ coupling::coupler, STRN("coupler") },
{ coupling::brakehose, STRN("brake hose") },
{ coupling::control, STRN("control") },
{ coupling::highvoltage, STRN("high voltage") },
{ coupling::gangway, STRN("gangway") },
{ coupling::mainhose, STRN("main hose") },
{ coupling::heating, STRN("heating") },
{ coupling::permanent, STRN("permanent") },
{ coupling::power24v, STRN("power 24V") },
{ coupling::power110v, STRN("power 110V") },
{ coupling::power3x400v, STRN("power 3x400V") },
{ faux, STRN("faux") },
{ coupler, STRN("coupler") },
{ brakehose, STRN("brake hose") },
{ control, STRN("control") },
{ highvoltage, STRN("high voltage") },
{ gangway, STRN("gangway") },
{ mainhose, STRN("main hose") },
{ heating, STRN("heating") },
{ permanent, STRN("permanent") },
{ power24v, STRN("power 24V") },
{ power110v, STRN("power 110V") },
{ power3x400v, STRN("power 3x400V") },
};
static std::string unknown(STRN("unknown"));