-
LoRA Library
+
{LABELS.library}
setQuery(e.target.value)}
- aria-label="Search LoRA library"
+ aria-label={LABELS.searchAria}
/>
@@ -687,7 +692,7 @@ export function LibraryTile() {
{searching
? `Results · ${filtered.length}`
- : `All LoRAs · ${compatible.length}`}
+ : `All ${TRAINED_STYLES} · ${compatible.length}`}
{filtered.length === 0 ? (
diff --git a/demos/realtime_motion_graph_web/web/components/Performance/MobileStepperRail.tsx b/demos/realtime_motion_graph_web/web/components/Performance/MobileStepperRail.tsx
index 715f83f..6670fea 100644
--- a/demos/realtime_motion_graph_web/web/components/Performance/MobileStepperRail.tsx
+++ b/demos/realtime_motion_graph_web/web/components/Performance/MobileStepperRail.tsx
@@ -2,6 +2,8 @@
import { useCallback, useEffect, useRef } from "react";
+import { LABELS } from "@demon/client";
+
import { useLoraStore } from "@/store/useLoraStore";
import { usePerformanceStore } from "@/store/usePerformanceStore";
import { useSessionStore } from "@/store/useSessionStore";
@@ -211,7 +213,7 @@ export function MobileLoraBlendStepper() {
side="right"
param="lora_blend"
max={1.0}
- label="LoRA Blend"
+ label={LABELS.blend}
sublabelTop={a ?? undefined}
sublabelBottom={b ?? undefined}
invert
diff --git a/demos/realtime_motion_graph_web/web/components/Performance/OperatorStrip.tsx b/demos/realtime_motion_graph_web/web/components/Performance/OperatorStrip.tsx
index d21f1f9..95e5bf3 100644
--- a/demos/realtime_motion_graph_web/web/components/Performance/OperatorStrip.tsx
+++ b/demos/realtime_motion_graph_web/web/components/Performance/OperatorStrip.tsx
@@ -365,11 +365,11 @@ export function OperatorStrip() {