Standerdizing currency symbols Part 2 (#94259)

## About The Pull Request
Converts almost all non-constant, non-tgui usages of all variantions of
"credit" and "cr"

Everything seems in order, tested most the currencies.
<img width="905" height="119" alt="image"
src="https://github.com/user-attachments/assets/3fa005a7-a114-426c-9646-b81f68bc2dec"
/>
<img width="255" height="128" alt="image"
src="https://github.com/user-attachments/assets/14c83b54-4fd9-4bee-838f-5b1c03939d9a"
/>


## Why It's Good For The Game
Same justification as https://github.com/tgstation/tgstation/pull/94128
Just easier to mantain/adjust the grammer/names of our money
## Changelog
🆑
spellcheck: minor cleanup on some usecases of "credits"
/🆑
This commit is contained in:
FalloutFalcon
2025-12-13 21:00:19 -05:00
committed by GitHub
parent 19886ac64f
commit d25c6201f4
51 changed files with 146 additions and 139 deletions
@@ -337,7 +337,7 @@
var/datum/crime/citation/new_citation = new(name = citation_name, author = allowed_access, fine = fine)
target_record.citations += new_citation
new_citation.alert_owner(usr, src, target_record.name, "You have been fined [fine] credits for '[citation_name]'. Fines may be paid at security.")
new_citation.alert_owner(usr, src, target_record.name, "You have been fined [fine] [MONEY_NAME] for '[citation_name]'. Fines may be paid at security.")
investigate_log("New Citation: <strong>[citation_name]</strong> Fine: [fine] | Added to [target_record.name] by [key_name(human_user)]", INVESTIGATE_RECORDS)
SSblackbox.ReportCitation(REF(new_citation), human_user.ckey, human_user.real_name, target_record.name, citation_name, null, fine)
@@ -594,7 +594,7 @@
nap_violation(target)
return FALSE
var/datum/bank_account/beepsky_department_account = SSeconomy.get_dep_account(payment_department)
say("Thank you for your compliance. Your account been charged [fair_market_price] credits.")
say("Thank you for your compliance. Your account been charged [fair_market_price] [MONEY_NAME].")
if(beepsky_department_account)
beepsky_department_account.adjust_money(fair_market_price)
return TRUE