Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stringtable updates #180

Merged
merged 3 commits into from
Aug 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions description.ext
Original file line number Diff line number Diff line change
Expand Up @@ -171,17 +171,17 @@ class Params

class f_param_fog
{
title = "Override Fog";
title = "$STR_f_param_fog";
values[] = {0,1,2,4};
texts[] = {"No Fog","Light Fog","Heavy Fog","Use default"};
texts[] = {"$STR_f_param_fog_Option0","$STR_f_param_fog_Option1","$STR_f_param_fog_Option2","$STR_f_param_fog_Option4"};
default = 4;
};

class f_param_wind
{
title = "Override Wind";
title = "$STR_f_param_wind";
values[] = {0,1,2,4};
texts[] = {"No Wind","Light Wind","Heavy Wind","Use default"};
texts[] = {"$STR_f_param_wind_Option0","$STR_f_param_wind_Option1","$STR_f_param_wind_Option2","$STR_f_param_wind_Option4"};
default = 4;
};

Expand Down
32 changes: 31 additions & 1 deletion stringtable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<French> Nuit </French>
</Key>
<Key ID="STR_f_param_timeOfDay_Option8">
<English> Use mission settings </English>
<English> Use mission setting </English>
</Key>
<Key ID="STR_f_param_weather">
<English> Weather </English>
Expand Down Expand Up @@ -144,6 +144,36 @@
<Spanish> Niebla </Spanish>
<French> Brouillard </French>
</Key>
<Key ID="STR_f_param_fog">
<English> Override Fog </English>
</Key>
<Key ID="STR_f_param_fog_Option0">
<English> No Fog </English>
</Key>
<Key ID="STR_f_param_fog_Option1">
<English> Light Fog </English>
</Key>
<Key ID="STR_f_param_fog_Option2">
<English> Heavy Fog </English>
</Key>
<Key ID="STR_f_param_fog_Option4">
<English> Use mission setting </English>
</Key>
<Key ID="STR_f_param_wind">
<English> Override Wind </English>
</Key>
<Key ID="STR_f_param_wind_Option0">
<English> No Wind </English>
</Key>
<Key ID="STR_f_param_wind_Option1">
<English> Light Wind </English>
</Key>
<Key ID="STR_f_param_wind_Option2">
<English> Heavy Wind </English>
</Key>
<Key ID="STR_f_param_wind_Option4">
<English> Use mission setting </English>
</Key>
<Key ID="STR_f_param_AISkill_BLUFOR">
<English> AI Skill (BLUFOR) </English>
<Czech> Úroveň AI (BLUFOR) </Czech>
Expand Down