Converted all static strings to translation keys. (#2284)

This commit is contained in:
gir489
2023-10-20 12:24:44 -04:00
committed by GitHub
parent d6c32533be
commit 37468ca7b0
133 changed files with 1027 additions and 1021 deletions

View File

@ -218,13 +218,13 @@ namespace big
void view::spawn_vehicle()
{
ImGui::RadioButton("New", &g.spawn_vehicle.spawn_type, 0);
ImGui::RadioButton("VIEW_DEBUG_THREADS_NEW"_T.data(), &g.spawn_vehicle.spawn_type, 0);
ImGui::SameLine();
ImGui::RadioButton("Personal", &g.spawn_vehicle.spawn_type, 1);
ImGui::RadioButton("VIEW_SPAWN_VEHICLE_PERSONAL"_T.data(), &g.spawn_vehicle.spawn_type, 1);
ImGui::SameLine();
ImGui::RadioButton("Persistent", &g.spawn_vehicle.spawn_type, 2);
ImGui::RadioButton("VIEW_SPAWN_VEHICLE_PERSISTENT"_T.data(), &g.spawn_vehicle.spawn_type, 2);
ImGui::SameLine();
ImGui::RadioButton("Xml", &g.spawn_vehicle.spawn_type, 3);
ImGui::RadioButton("VIEW_SPAWN_VEHICLE_XML"_T.data(), &g.spawn_vehicle.spawn_type, 3);
switch (g.spawn_vehicle.spawn_type)
{