refactor: rename internal Fai* design system + fai_ helpers to chain
Some checks failed
Security / Security check (push) Failing after 2s

The Studio design system, widgets and helpers carried a Fai* / fai_
prefix (FaiSpace, FaiColors, FaiTheme, FaiLog, 17 fai_*.dart files, the
faiBinary* l10n keys). Studio is the Ch∆In product, so rename them to
Chain* / chain_ — carefully preserving English fail/failure/failed.
Also fix stale references: the 'fai' binary in l10n strings -> 'chain',
FAI_* env vars (FAI_BIN/DATA_DIR/MODULES_DIR/TODAY/BOOTSTRAP_TOKEN) ->
CHAIN_*, fai_platform -> fai_chain, fai_hub -> chain_hub. Vendor
security-hook tooling (FAI_BANNED_TERMS_FILE) + the .fai bundle ext left.
flutter analyze + test: clean (20 passed).

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
flemming-it 2026-06-16 17:53:17 +02:00
parent 68d23ab7dd
commit 891acd2ba2
52 changed files with 1225 additions and 1225 deletions

View file

@ -2538,25 +2538,25 @@ class AppLocalizationsEn extends AppLocalizations {
}
@override
String get faiBinaryNotFound =>
'Could not find the `fai` program on this machine.';
String get chainBinaryNotFound =>
'Could not find the `chain` program on this machine.';
@override
String get faiBinaryNotFoundHint =>
'Install the Ch∆In platform, or point Studio at an existing `fai` binary.';
String get chainBinaryNotFoundHint =>
'Install the Ch∆In platform, or point Studio at an existing `chain` binary.';
@override
String get faiBinaryLocateButton => 'Locate `fai` binary…';
String get chainBinaryLocateButton => 'Locate `chain` binary…';
@override
String get faiBinaryInstallDocsButton => 'Open install guide';
String get chainBinaryInstallDocsButton => 'Open install guide';
@override
String get faiBinaryPickerTitle => 'Select the `fai` binary';
String get chainBinaryPickerTitle => 'Select the `chain` binary';
@override
String faiBinarySetOk(String path) {
return 'Using `fai` binary at $path';
String chainBinarySetOk(String path) {
return 'Using `chain` binary at $path';
}
@override