Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Not sure if it's the same for everyone but mine is in "SteamLibrary/steamapps/workshop/content/289070/2266952591".
cd ~/.local/share/Steam/steamapps/workshop/content/289070/2266952591/
find -name '*.lua' -o -name '*.xml' | sed -n 's/\(.*\/\)\(.*\)/ln -s \2 \1\L\2/p' | sh
Simply replace the directory and change accordingly for other mods with similar issues.
However, this you also need to ensure that a few file have their names both in mixed case and in lower case because in linux, the files will be read as they're named inside the mod's resources, so if it's called in mixed case, it will be opened as mixed case. If it's called in lower case, it will be opened in lowercase.
So, to make both mods fully work on linux steam, I did the following:
cd ~/.local/share/Steam/steamapps/workshop/content/289070/1312585482
ln -s RealModifierAnalysis.xml realmodifieranalysis.xml
ln -s betterreportscreen_database.sql BetterReportScreen_Database.sql
ln -s realmodifieranalysis.lua RealModifierAnalysis.lua
cd RLL
ln -s ReportsListLoader.lua reportslistloader.lua
ln -s ReportsListLoader.sql reportslistloader.sql
cd ~/.local/share/Steam/steamapps/workshop/content/289070/2266952591
ln -s GovernmentScreen.lua governmentscreen.lua
ln -s GovernmentScreen.xml governmentscreen.xml
Thank you! This was indeed the issue. :)