| English | Русский |
“Why is my AI suddenly writing notes in Chinese?” — Because the original author hardcoded prompts into the source code. We fixed that.
This is a fork of the SillyTavern-Horae extension. We took it, gutted it, and scrubbed away all the hardcoded Chinese strings that were ruining the RP experience for the rest of the world.
https://github.com/kykaaj/SillyTavern-Horae.gitIf you’re going to contribute or mess with the code — I beg of you, do not hardcode strings. Use the L() function for AI prompts and t() for UI elements. Let’s not bring the Chinese chaos back.
// ✅ CORRECT (auto-selects language)
const msg = L('中文', 'English', '日本語', '한국어', 'Русский');
// ✅ ALSO CORRECT (for UI/toasts)
showToast(t('common.saveSuccess'), 'success');
Original Author: SenriYuki
Fork maintainer: kykaaj