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

Fixed mod description strings as well as removed RHSAFRF #230

Merged
merged 1 commit into from
Apr 2, 2024
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
5 changes: 2 additions & 3 deletions addons/main/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,6 @@ class CfgPatches {

// Mods
"rhsusf_main",
"rhs_main",

// CBA
"cba_ui",
Expand All @@ -903,9 +902,9 @@ class CfgMods {
picture = "A3\Ui_f\data\Logos\arma3_expansion_alpha_ca";
hidePicture = "true";
hideName = "true";
actionName = "Website";
actionName = CSTRING(Website);
action = CSTRING(Url);
description = "Issue Tracker: https://github.com/7cav/CavMod/issues";
description = CSTRING(Description);
};
};

Expand Down
7 changes: 7 additions & 0 deletions addons/main/stringtable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@
<Key ID="STR_Cav_Main_ModTeam">
<English>7th Cavalry S3 Mod Team</English>
</Key>

<Key ID="STR_Cav_Main_Url">
<English>http://7cav.us</English>
</Key>
<Key ID="STR_Cav_Main_Website">
<English>Website</English>
</Key>
<Key ID="STR_Cav_Main_Description">
<English>Issue Tracker: https://github.com/7cav/CavMod/issues</English>
</Key>
</Package>
</Project>
Loading