@cosmicdrift/kumiko-renderer 0.126.0 → 0.128.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-renderer",
3
- "version": "0.126.0",
3
+ "version": "0.128.0",
4
4
  "description": "Platform-agnostic React renderer for Kumiko screens. Contains the shared logic — primitives-contract, hooks, KumikoScreen, navigation & SSE abstractions — that any platform-specific renderer (web, native) composes. No DOM, no EventSource, no react-dom.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -15,8 +15,8 @@
15
15
  }
16
16
  },
17
17
  "dependencies": {
18
- "@cosmicdrift/kumiko-framework": "0.126.0",
19
- "@cosmicdrift/kumiko-headless": "0.126.0",
18
+ "@cosmicdrift/kumiko-framework": "0.128.0",
19
+ "@cosmicdrift/kumiko-headless": "0.128.0",
20
20
  "react": "^19.2.6"
21
21
  },
22
22
  "devDependencies": {
@@ -752,10 +752,19 @@ function EntityListBody({
752
752
  out.push({
753
753
  field,
754
754
  label,
755
- // ponytail: Yes/No literal — boolean-Facet-Labels i18n'en wenn eine App es braucht
756
755
  options: [
757
- { value: "true", label: "Yes" },
758
- { value: "false", label: "No" },
756
+ {
757
+ value: "true",
758
+ label: effectiveTranslate(
759
+ `${featureName}:entity:${screen.entity}:field:${field}:option:true`,
760
+ ),
761
+ },
762
+ {
763
+ value: "false",
764
+ label: effectiveTranslate(
765
+ `${featureName}:entity:${screen.entity}:field:${field}:option:false`,
766
+ ),
767
+ },
759
768
  ],
760
769
  });
761
770
  }