@almadar/ui 5.21.10 → 5.21.12
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/dist/avl/index.cjs +175 -798
- package/dist/avl/index.js +24 -647
- package/dist/components/game/organisms/three/index.cjs +2 -489
- package/dist/components/game/organisms/three/index.js +1 -488
- package/dist/components/index.cjs +191 -2487
- package/dist/components/index.js +47 -2296
- package/dist/providers/index.cjs +160 -767
- package/dist/providers/index.js +21 -628
- package/dist/runtime/index.cjs +599 -1209
- package/dist/runtime/index.js +461 -1071
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@ import { EventBusContext, useTraitScope } from '@almadar/ui/providers';
|
|
|
13
13
|
import { clsx } from 'clsx';
|
|
14
14
|
import { twMerge } from 'tailwind-merge';
|
|
15
15
|
import { EffectComposer, Bloom, DepthOfField, Vignette } from '@react-three/postprocessing';
|
|
16
|
+
import { useTranslate } from '@almadar/ui/hooks';
|
|
16
17
|
|
|
17
18
|
var __defProp = Object.defineProperty;
|
|
18
19
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
@@ -5536,494 +5537,6 @@ var Avl3DContext = createContext(DEFAULT_CONFIG2);
|
|
|
5536
5537
|
function useAvl3DConfig() {
|
|
5537
5538
|
return useContext(Avl3DContext);
|
|
5538
5539
|
}
|
|
5539
|
-
|
|
5540
|
-
// locales/en.json
|
|
5541
|
-
var en_default = {
|
|
5542
|
-
$meta: {
|
|
5543
|
-
locale: "en",
|
|
5544
|
-
direction: "ltr"
|
|
5545
|
-
},
|
|
5546
|
-
"common.save": "Save",
|
|
5547
|
-
"common.cancel": "Cancel",
|
|
5548
|
-
"common.delete": "Delete",
|
|
5549
|
-
"common.close": "Close",
|
|
5550
|
-
"common.confirm": "Are you sure?",
|
|
5551
|
-
"common.create": "Create",
|
|
5552
|
-
"common.edit": "Edit",
|
|
5553
|
-
"common.view": "View",
|
|
5554
|
-
"common.add": "Add",
|
|
5555
|
-
"common.remove": "Remove",
|
|
5556
|
-
"common.search": "Search...",
|
|
5557
|
-
"common.filter": "Filter",
|
|
5558
|
-
"common.actions": "Actions",
|
|
5559
|
-
"common.yes": "Yes",
|
|
5560
|
-
"common.no": "No",
|
|
5561
|
-
"common.selected": "selected",
|
|
5562
|
-
"common.ok": "OK",
|
|
5563
|
-
"common.done": "Done",
|
|
5564
|
-
"common.apply": "Apply",
|
|
5565
|
-
"common.reset": "Reset",
|
|
5566
|
-
"common.refresh": "Refresh",
|
|
5567
|
-
"common.export": "Export",
|
|
5568
|
-
"common.import": "Import",
|
|
5569
|
-
"common.copy": "Copy",
|
|
5570
|
-
"common.settings": "Settings",
|
|
5571
|
-
"nav.previous": "Previous",
|
|
5572
|
-
"nav.next": "Next",
|
|
5573
|
-
"nav.back": "Back",
|
|
5574
|
-
"nav.home": "Home",
|
|
5575
|
-
"form.submit": "Submit",
|
|
5576
|
-
"form.saving": "Saving...",
|
|
5577
|
-
"form.required": "This field is required",
|
|
5578
|
-
"form.invalidEmail": "Enter a valid email address",
|
|
5579
|
-
"form.selectPlaceholder": "Select {{label}}...",
|
|
5580
|
-
"form.searchPlaceholder": "Search {{entity}}...",
|
|
5581
|
-
"table.empty.title": "No items found",
|
|
5582
|
-
"table.empty.description": "No items to display.",
|
|
5583
|
-
"table.search.placeholder": "Search...",
|
|
5584
|
-
"table.pagination.showing": "Showing {{start}} to {{end}} of {{total}} results",
|
|
5585
|
-
"table.pagination.page": "Page {{page}} of {{totalPages}}",
|
|
5586
|
-
"table.bulk.selected": "{{count}} selected",
|
|
5587
|
-
"table.loading": "Loading...",
|
|
5588
|
-
"status.loading": "Loading...",
|
|
5589
|
-
"status.scheduled": "Scheduled",
|
|
5590
|
-
"status.inProgress": "In Progress",
|
|
5591
|
-
"status.completed": "Completed",
|
|
5592
|
-
"status.cancelled": "Cancelled",
|
|
5593
|
-
"status.pending": "Pending",
|
|
5594
|
-
"status.active": "Active",
|
|
5595
|
-
"status.inactive": "Inactive",
|
|
5596
|
-
"status.draft": "Draft",
|
|
5597
|
-
"status.archived": "Archived",
|
|
5598
|
-
"error.generic": "Something went wrong",
|
|
5599
|
-
"error.retry": "Try again",
|
|
5600
|
-
"error.notFound": "Not found",
|
|
5601
|
-
"error.loadFailed": "Failed to load: {{message}}",
|
|
5602
|
-
"error.configMissing": "Configuration not found for: {{id}}",
|
|
5603
|
-
"common.loading": "Loading...",
|
|
5604
|
-
"common.showMore": "Show More",
|
|
5605
|
-
"common.showLess": "Show Less",
|
|
5606
|
-
"common.noResults": "No results found",
|
|
5607
|
-
"common.saveChanges": "Save Changes",
|
|
5608
|
-
"common.retry": "Retry",
|
|
5609
|
-
"common.open": "Open",
|
|
5610
|
-
"common.back": "Back",
|
|
5611
|
-
"empty.noItems": "No items",
|
|
5612
|
-
"empty.noData": "No data available",
|
|
5613
|
-
"empty.noItemsYet": "No items yet",
|
|
5614
|
-
"empty.noItemsAdded": "No items added yet",
|
|
5615
|
-
"empty.noOptionsFound": "No options found",
|
|
5616
|
-
"list.addItemPlaceholder": "Add new item...",
|
|
5617
|
-
"error.occurred": "An error occurred",
|
|
5618
|
-
"error.failedToLoad": "Failed to load data",
|
|
5619
|
-
"wizard.back": "Back",
|
|
5620
|
-
"wizard.next": "Next",
|
|
5621
|
-
"wizard.complete": "Complete",
|
|
5622
|
-
"wizard.stepOf": "Step {{current}} of {{total}}",
|
|
5623
|
-
"pagination.previous": "Previous",
|
|
5624
|
-
"pagination.next": "Next",
|
|
5625
|
-
"pagination.total": "Total:",
|
|
5626
|
-
"pagination.show": "Show:",
|
|
5627
|
-
"pagination.goTo": "Go to:",
|
|
5628
|
-
"pagination.go": "Go",
|
|
5629
|
-
"auth.signIn": "Sign in",
|
|
5630
|
-
"auth.signOut": "Sign out",
|
|
5631
|
-
"dialog.confirm": "Confirm",
|
|
5632
|
-
"dialog.cancel": "Cancel",
|
|
5633
|
-
"dialog.loading": "Loading...",
|
|
5634
|
-
"dialog.delete.title": "Delete {{item}}?",
|
|
5635
|
-
"dialog.delete.message": "This action cannot be undone.",
|
|
5636
|
-
"trait.availableActions": "Available Actions",
|
|
5637
|
-
"trait.transitions": "Transitions",
|
|
5638
|
-
"trait.availableNow": "Available now",
|
|
5639
|
-
"book.startReading": "Start Reading",
|
|
5640
|
-
"book.tableOfContents": "Table of Contents",
|
|
5641
|
-
"book.partNumber": "Part {{number}}",
|
|
5642
|
-
"book.print": "Print",
|
|
5643
|
-
"book.previousPage": "Previous page",
|
|
5644
|
-
"book.nextPage": "Next page",
|
|
5645
|
-
"quiz.showAnswer": "Show answer",
|
|
5646
|
-
"quiz.hideAnswer": "Hide answer",
|
|
5647
|
-
"aria.closeModal": "Close modal",
|
|
5648
|
-
"aria.closeToast": "Dismiss toast",
|
|
5649
|
-
"aria.closeAlert": "Dismiss alert",
|
|
5650
|
-
"aria.removeFilter": "Remove filter",
|
|
5651
|
-
"aria.closeDrawer": "Close drawer",
|
|
5652
|
-
"aria.closePanel": "Close panel",
|
|
5653
|
-
"aria.previousImage": "Previous image",
|
|
5654
|
-
"aria.nextImage": "Next image",
|
|
5655
|
-
"aria.dismiss": "Dismiss",
|
|
5656
|
-
"aria.previousSlide": "Previous slide",
|
|
5657
|
-
"aria.nextSlide": "Next slide",
|
|
5658
|
-
"aria.previousDays": "Previous days",
|
|
5659
|
-
"aria.nextDays": "Next days",
|
|
5660
|
-
"aria.decrease": "Decrease",
|
|
5661
|
-
"aria.increase": "Increase",
|
|
5662
|
-
"aria.breadcrumb": "Breadcrumb",
|
|
5663
|
-
"aria.tableOfContents": "Table of contents",
|
|
5664
|
-
"aria.docsSidebar": "Documentation sidebar",
|
|
5665
|
-
"aria.selectAllRows": "Select all rows",
|
|
5666
|
-
"aria.selectAll": "Select all",
|
|
5667
|
-
"aria.upvote": "Upvote",
|
|
5668
|
-
"aria.downvote": "Downvote",
|
|
5669
|
-
"aria.qrScanner": "QR scanner",
|
|
5670
|
-
"aria.mockScanDev": "Mock scan (dev)",
|
|
5671
|
-
"aria.openMenu": "Open menu",
|
|
5672
|
-
"aria.closeMenu": "Close menu",
|
|
5673
|
-
"aria.openSidebar": "Open sidebar",
|
|
5674
|
-
"sidebar.expand": "Expand sidebar",
|
|
5675
|
-
"sidebar.collapse": "Collapse sidebar",
|
|
5676
|
-
"sidebar.close": "Close sidebar",
|
|
5677
|
-
"loading.items": "Loading items...",
|
|
5678
|
-
"card.imageAlt": "Image",
|
|
5679
|
-
"canvas.emptyMessage": "No content",
|
|
5680
|
-
"canvas.errorTitle": "Canvas error",
|
|
5681
|
-
"book.noData": "No data",
|
|
5682
|
-
"common.notifications": "Notifications",
|
|
5683
|
-
"common.remaining": "{{count}} remaining",
|
|
5684
|
-
"error.somethingWentWrong": "Something went wrong",
|
|
5685
|
-
"error.loadingItems": "Loading items...",
|
|
5686
|
-
"error.noItemsFound": "No items found",
|
|
5687
|
-
"debug.noEntityData": "No entity data",
|
|
5688
|
-
"debug.noEntities": "No entities",
|
|
5689
|
-
"debug.noTicks": "No ticks registered",
|
|
5690
|
-
"debug.noActiveTraits": "No active traits",
|
|
5691
|
-
"debug.noGuardEvaluations": "No guard evaluations",
|
|
5692
|
-
"debug.noBridgeData": "No bridge data",
|
|
5693
|
-
"debug.status": "Status",
|
|
5694
|
-
"debug.eventsForwarded": "Events Forwarded (Client \u2192 Server)",
|
|
5695
|
-
"debug.eventsReceived": "Events Received (Server \u2192 Client)",
|
|
5696
|
-
"debug.lastHeartbeat": "Last Heartbeat",
|
|
5697
|
-
"debug.noEventsYet": "No events yet",
|
|
5698
|
-
"debug.noTransitionsRecorded": "No transitions recorded",
|
|
5699
|
-
"debug.noVerificationChecks": "No verification checks yet",
|
|
5700
|
-
"display.chartError": "Chart error",
|
|
5701
|
-
"display.codeViewerError": "Code viewer error",
|
|
5702
|
-
"display.noCode": "No code",
|
|
5703
|
-
"display.documentError": "Document error",
|
|
5704
|
-
"display.noDocument": "No document",
|
|
5705
|
-
"display.graphError": "Graph error",
|
|
5706
|
-
"display.noGraphData": "No graph data",
|
|
5707
|
-
"display.galleryError": "Gallery error",
|
|
5708
|
-
"display.noMedia": "No media",
|
|
5709
|
-
"display.meterError": "Meter error",
|
|
5710
|
-
"display.signaturePadError": "Signature pad error",
|
|
5711
|
-
"display.timelineError": "Timeline error",
|
|
5712
|
-
"display.noEvents": "No events",
|
|
5713
|
-
"template.features": "Features",
|
|
5714
|
-
"template.howItWorks": "How It Works",
|
|
5715
|
-
"template.showcase": "Showcase",
|
|
5716
|
-
"template.faq": "Frequently Asked Questions",
|
|
5717
|
-
"template.ourTeam": "Our Team",
|
|
5718
|
-
"template.caseStudies": "Case Studies",
|
|
5719
|
-
"richBlockEditor.toolbar.text": "Text",
|
|
5720
|
-
"richBlockEditor.toolbar.h1": "H1",
|
|
5721
|
-
"richBlockEditor.toolbar.h2": "H2",
|
|
5722
|
-
"richBlockEditor.toolbar.h3": "H3",
|
|
5723
|
-
"richBlockEditor.toolbar.bulletList": "Bullet list",
|
|
5724
|
-
"richBlockEditor.toolbar.numbered": "Numbered",
|
|
5725
|
-
"richBlockEditor.toolbar.quote": "Quote",
|
|
5726
|
-
"richBlockEditor.toolbar.code": "Code",
|
|
5727
|
-
"richBlockEditor.toolbar.divider": "Divider",
|
|
5728
|
-
"richBlockEditor.toolbar.image": "Image",
|
|
5729
|
-
"richBlockEditor.blockType.paragraph": "Text",
|
|
5730
|
-
"richBlockEditor.blockType.heading1": "Heading 1",
|
|
5731
|
-
"richBlockEditor.blockType.heading2": "Heading 2",
|
|
5732
|
-
"richBlockEditor.blockType.heading3": "Heading 3",
|
|
5733
|
-
"richBlockEditor.blockType.bulletList": "Bullet list",
|
|
5734
|
-
"richBlockEditor.blockType.numberedList": "Numbered list",
|
|
5735
|
-
"richBlockEditor.blockType.quote": "Quote",
|
|
5736
|
-
"richBlockEditor.blockType.code": "Code",
|
|
5737
|
-
"richBlockEditor.blockType.divider": "Divider",
|
|
5738
|
-
"richBlockEditor.blockType.image": "Image",
|
|
5739
|
-
"richBlockEditor.blockActions": "Block actions",
|
|
5740
|
-
"richBlockEditor.duplicate": "Duplicate",
|
|
5741
|
-
"richBlockEditor.turnInto": "Turn into",
|
|
5742
|
-
"richBlockEditor.placeholder.heading1": "Heading 1",
|
|
5743
|
-
"richBlockEditor.placeholder.heading2": "Heading 2",
|
|
5744
|
-
"richBlockEditor.placeholder.heading3": "Heading 3",
|
|
5745
|
-
"richBlockEditor.placeholder.quote": "Quote",
|
|
5746
|
-
"richBlockEditor.placeholder.code": "Enter code",
|
|
5747
|
-
"richBlockEditor.placeholder.paragraph": "Start writing...",
|
|
5748
|
-
"richBlockEditor.placeholder.listItem": "List item",
|
|
5749
|
-
"richBlockEditor.placeholder.caption": "Caption (optional)",
|
|
5750
|
-
"richBlockEditor.aria.heading1Block": "Heading 1 block",
|
|
5751
|
-
"richBlockEditor.aria.heading2Block": "Heading 2 block",
|
|
5752
|
-
"richBlockEditor.aria.heading3Block": "Heading 3 block",
|
|
5753
|
-
"richBlockEditor.aria.quoteBlock": "Quote block",
|
|
5754
|
-
"richBlockEditor.aria.codeBlock": "Code block",
|
|
5755
|
-
"richBlockEditor.aria.codeLanguage": "Code language",
|
|
5756
|
-
"richBlockEditor.aria.imageUrl": "Image URL",
|
|
5757
|
-
"richBlockEditor.aria.imageCaption": "Image caption",
|
|
5758
|
-
"richBlockEditor.aria.listItem": "List item",
|
|
5759
|
-
"richBlockEditor.aria.removeListItem": "Remove list item",
|
|
5760
|
-
"richBlockEditor.aria.paragraphBlock": "Paragraph block",
|
|
5761
|
-
"richBlockEditor.embeddedImage": "Embedded image",
|
|
5762
|
-
"richBlockEditor.noImageUrl": "No image URL set",
|
|
5763
|
-
"richBlockEditor.addItem": "Add item",
|
|
5764
|
-
"richBlockEditor.insertParagraphBelow": "Insert paragraph below",
|
|
5765
|
-
"richBlockEditor.editorToolbar": "Block editor toolbar",
|
|
5766
|
-
"richBlockEditor.insertEntry": "Insert {{label}}",
|
|
5767
|
-
"versionDiff.compare": "Compare",
|
|
5768
|
-
"versionDiff.to": "to",
|
|
5769
|
-
"versionDiff.beforeRevision": "Before revision",
|
|
5770
|
-
"versionDiff.afterRevision": "After revision",
|
|
5771
|
-
"versionDiff.switchToInline": "Switch to inline view",
|
|
5772
|
-
"versionDiff.switchToSideBySide": "Switch to side-by-side view",
|
|
5773
|
-
"versionDiff.revert": "Revert",
|
|
5774
|
-
"versionDiff.byAuthor": " by {{author}}",
|
|
5775
|
-
"violationAlert.actionType.measure": "Corrective Measure",
|
|
5776
|
-
"violationAlert.actionType.admin": "Administrative Action",
|
|
5777
|
-
"violationAlert.actionType.penalty": "Penalty Proceedings",
|
|
5778
|
-
"violationAlert.fallbackMessage": "Violation",
|
|
5779
|
-
"violationAlert.adminLabel": "Admin:",
|
|
5780
|
-
"violationAlert.penaltyLabel": "Penalty:",
|
|
5781
|
-
"violationAlert.goToField": "Go to field",
|
|
5782
|
-
"branchingLogic.title": "Branching logic",
|
|
5783
|
-
"branchingLogic.if": "If",
|
|
5784
|
-
"branchingLogic.goTo": "go to",
|
|
5785
|
-
"branchingLogic.rules": "Rules",
|
|
5786
|
-
"branchingLogic.logicGraph": "Logic graph",
|
|
5787
|
-
"branchingLogic.addRule": "Add rule",
|
|
5788
|
-
"branchingLogic.deleteRule": "Delete rule",
|
|
5789
|
-
"branchingLogic.endOfSurvey": "End of survey",
|
|
5790
|
-
"branchingLogic.brokenReference": "Broken reference",
|
|
5791
|
-
"branchingLogic.selectQuestion": "Select question",
|
|
5792
|
-
"branchingLogic.selectTarget": "Select target",
|
|
5793
|
-
"branchingLogic.selectValue": "Select value",
|
|
5794
|
-
"branchingLogic.addValue": "Add value",
|
|
5795
|
-
"branchingLogic.value": "Value",
|
|
5796
|
-
"branchingLogic.typeValuePressEnter": "Type value, press Enter",
|
|
5797
|
-
"branchingLogic.operatorEquals": "equals",
|
|
5798
|
-
"branchingLogic.operatorNotEquals": "does not equal",
|
|
5799
|
-
"branchingLogic.operatorContains": "contains",
|
|
5800
|
-
"branchingLogic.operatorIn": "is one of",
|
|
5801
|
-
"branchingLogic.graphAriaLabel": "Branching logic graph",
|
|
5802
|
-
"branchingLogic.ruleCountOne": "{{count}} rule",
|
|
5803
|
-
"branchingLogic.ruleCountOther": "{{count}} rules",
|
|
5804
|
-
"branchingLogic.brokenCount": "{{count}} broken",
|
|
5805
|
-
"branchingLogic.emptyNoQuestions": "Add questions before building branching rules.",
|
|
5806
|
-
"branchingLogic.emptyNoRules": "No rules yet. Add a rule to define branching logic.",
|
|
5807
|
-
"filterGroup.filters": "Filters",
|
|
5808
|
-
"filterGroup.all": "All",
|
|
5809
|
-
"filterGroup.clear": "Clear",
|
|
5810
|
-
"filterGroup.clearAll": "Clear all",
|
|
5811
|
-
"filterGroup.from": "From",
|
|
5812
|
-
"filterGroup.to": "To",
|
|
5813
|
-
"filterGroup.allOf": "All {{label}}",
|
|
5814
|
-
"filterGroup.activeCount": "{{count}} active",
|
|
5815
|
-
"debug.guardEvaluationsHint": "Guard evaluations will appear when transitions or ticks with guards execute",
|
|
5816
|
-
"debug.expression": "Expression",
|
|
5817
|
-
"debug.inputs": "Inputs",
|
|
5818
|
-
"debug.trait": "Trait",
|
|
5819
|
-
"debug.filterAll": "All",
|
|
5820
|
-
"debug.filterPassed": "Passed",
|
|
5821
|
-
"debug.filterFailed": "Failed",
|
|
5822
|
-
"debug.traitsInitHint": "Traits will appear when the state machine initializes",
|
|
5823
|
-
"debug.traitsMountHint": "Traits will appear when components using them are mounted",
|
|
5824
|
-
"debug.activeStates": "Active States",
|
|
5825
|
-
"debug.availableEvents": "Available Events",
|
|
5826
|
-
"debug.noTransitionsFromState": "No transitions from current state",
|
|
5827
|
-
"debug.guarded": "guarded",
|
|
5828
|
-
"debug.otherEvents": "Other Events (not available from current state)",
|
|
5829
|
-
"debug.recentTransitions": "Recent Transitions",
|
|
5830
|
-
"debug.transitionsCount": "{{count}} transitions",
|
|
5831
|
-
"debug.states": "States",
|
|
5832
|
-
"debug.transitions": "Transitions",
|
|
5833
|
-
"debug.guards": "Guards",
|
|
5834
|
-
"debug.debugModeHint": "Debug mode may not be enabled",
|
|
5835
|
-
"debug.entitiesSpawnHint": "Entities will appear when spawned",
|
|
5836
|
-
"debug.singleton": "Singleton",
|
|
5837
|
-
"debug.singletonsCount": "Singletons ({{count}})",
|
|
5838
|
-
"debug.runtimeCount": "Runtime ({{count}})",
|
|
5839
|
-
"debug.moreEntities": "+{{count}} more entities",
|
|
5840
|
-
"debug.persistent": "Persistent",
|
|
5841
|
-
"debug.loadedCount": "{{count}} loaded",
|
|
5842
|
-
"debug.notLoaded": "not loaded",
|
|
5843
|
-
"debug.eventsExecuteHint": "Events will appear as traits, ticks, and other systems execute",
|
|
5844
|
-
"debug.allCount": "All ({{count}})",
|
|
5845
|
-
"debug.autoScroll": "Auto-scroll",
|
|
5846
|
-
"debug.transitionsProcessHint": "Transitions will appear as the state machine processes events",
|
|
5847
|
-
"debug.transitionsRecorded": "{{count}} transitions recorded",
|
|
5848
|
-
"debug.guardLabel": "guard:",
|
|
5849
|
-
"debug.effectsCount": "{{count}} effects",
|
|
5850
|
-
"debug.bridgeInitHint": "The ServerBridge has not been initialized. Bridge health will appear once the runtime connects to the server.",
|
|
5851
|
-
"debug.never": "Never",
|
|
5852
|
-
"debug.connected": "Connected",
|
|
5853
|
-
"debug.disconnected": "Disconnected",
|
|
5854
|
-
"debug.lastError": "Last Error",
|
|
5855
|
-
"debug.totalEventsProcessed": "{{count}} total events processed",
|
|
5856
|
-
"debug.server": "server",
|
|
5857
|
-
"debug.clientEffectsCount": "{{count}} clientEffects",
|
|
5858
|
-
"debug.emitLabel": "emit:",
|
|
5859
|
-
"debug.rowsCount": "{{count}} rows",
|
|
5860
|
-
"debug.serverResponse": "server response",
|
|
5861
|
-
"debug.collapseVerificationTimeline": "Collapse verification timeline",
|
|
5862
|
-
"debug.expandVerificationTimeline": "Expand verification timeline",
|
|
5863
|
-
"debug.failCount": "{{count}} fail",
|
|
5864
|
-
"debug.ok": "OK",
|
|
5865
|
-
"debug.localCount": "{{count}} local",
|
|
5866
|
-
"debug.serverCount": "{{count}} server",
|
|
5867
|
-
"debug.waitingForTransitions": "Waiting for transitions...",
|
|
5868
|
-
"debug.tabDispatch": "Dispatch",
|
|
5869
|
-
"debug.tabVerify": "Verify",
|
|
5870
|
-
"debug.tabVerifyAlert": "Verify (!)",
|
|
5871
|
-
"debug.tabTimeline": "Timeline",
|
|
5872
|
-
"debug.tabBridge": "Bridge",
|
|
5873
|
-
"debug.tabTraits": "Traits",
|
|
5874
|
-
"debug.tabTicks": "Ticks",
|
|
5875
|
-
"debug.tabEntities": "Entities",
|
|
5876
|
-
"debug.tabEvents": "Events",
|
|
5877
|
-
"debug.tabGuards": "Guards",
|
|
5878
|
-
"debug.debugger": "Debugger",
|
|
5879
|
-
"debug.failedCount": "{{count}} failed",
|
|
5880
|
-
"debug.traitsCount": "{{count}} traits",
|
|
5881
|
-
"debug.idle": "Idle",
|
|
5882
|
-
"debug.openDebugger": "Open Debugger (`)",
|
|
5883
|
-
"debug.kflowVerifier": "KFlow Verifier",
|
|
5884
|
-
"debug.allPassing": "All passing",
|
|
5885
|
-
"debug.runtime": "Runtime",
|
|
5886
|
-
"debug.close": "Close (`)",
|
|
5887
|
-
"debug.toggleHint": "Press ` to toggle | window.__orbitalVerification for automation",
|
|
5888
|
-
"replyTree.expandReplies": "Expand replies",
|
|
5889
|
-
"replyTree.collapseReplies": "Collapse replies",
|
|
5890
|
-
"replyTree.voteOnReplyBy": "Vote on reply by {{author}}",
|
|
5891
|
-
"replyTree.replyTo": "Reply to {{author}}",
|
|
5892
|
-
"replyTree.replyToPlaceholder": "Reply to {{author}}\u2026",
|
|
5893
|
-
"replyTree.reply": "Reply",
|
|
5894
|
-
"replyTree.flagReplyBy": "Flag reply by {{author}}",
|
|
5895
|
-
"replyTree.flag": "Flag",
|
|
5896
|
-
"replyTree.send": "Send",
|
|
5897
|
-
"replyTree.continueThread": "Continue thread",
|
|
5898
|
-
"replyTree.noRepliesYet": "No replies yet.",
|
|
5899
|
-
"signaturePad.label": "Signature",
|
|
5900
|
-
"signaturePad.helperText": "Draw your signature above",
|
|
5901
|
-
"signaturePad.clear": "Clear",
|
|
5902
|
-
"signaturePad.confirm": "Confirm",
|
|
5903
|
-
"qrScanner.cameraUnavailable": "Camera unavailable",
|
|
5904
|
-
"qrScanner.paused": "Paused",
|
|
5905
|
-
"qrScanner.resumeScanning": "Resume scanning",
|
|
5906
|
-
"qrScanner.pauseScanning": "Pause scanning",
|
|
5907
|
-
"qrScanner.switchToFrontCamera": "Switch to front camera",
|
|
5908
|
-
"qrScanner.switchToRearCamera": "Switch to rear camera",
|
|
5909
|
-
"qrScanner.mockScan": "Mock Scan",
|
|
5910
|
-
"docSearch.placeholder": "Search documentation...",
|
|
5911
|
-
"stateMachine.loading": "Loading state machine\u2026",
|
|
5912
|
-
"stateMachine.noStateMachine": "No state machine to visualize",
|
|
5913
|
-
"avl.trigger": "Trigger",
|
|
5914
|
-
"avl.guard": "Guard",
|
|
5915
|
-
"avl.effects": "Effects",
|
|
5916
|
-
"avl.props": "Props",
|
|
5917
|
-
"avl.entity": "Entity",
|
|
5918
|
-
"avl.traits": "Traits",
|
|
5919
|
-
"avl.transition": "Transition",
|
|
5920
|
-
"avl.onEntity": "on {{entity}}",
|
|
5921
|
-
"avl.linkedTo": "linked to {{entity}}",
|
|
5922
|
-
"avl.pressEscToZoomOut": "Press Esc to zoom out",
|
|
5923
|
-
"avl.zoomIn": "Zoom in",
|
|
5924
|
-
"avl.zoomOut": "Zoom out",
|
|
5925
|
-
"avl.orbitalLabel": "Orbital: {{name}}",
|
|
5926
|
-
"avl.orbitalLabelHighlighted": "Orbital: {{name}} (highlighted)",
|
|
5927
|
-
"avl.noTraitData": "No trait data",
|
|
5928
|
-
"avl.computingLayout": "Computing layout...",
|
|
5929
|
-
"avl.noStateMachine": "No state machine",
|
|
5930
|
-
"avl.listensFor": "listens for {{event}}",
|
|
5931
|
-
"avl.emits": "emits {{event}}",
|
|
5932
|
-
"avl.pageLayout": "Page Layout",
|
|
5933
|
-
"avl.overlaySuffix": "(overlay)",
|
|
5934
|
-
"orbPreview.previewBadge": "Preview",
|
|
5935
|
-
"orbPreview.doubleClickToOpen": "Double-click to open",
|
|
5936
|
-
"orbPreview.dropToAddAndOpen": "Drop to add and open",
|
|
5937
|
-
"orbPreview.dispatching": "Coordinator is dispatching to this orbital",
|
|
5938
|
-
"orbPreview.noPreview": "No preview available",
|
|
5939
|
-
"orbPreview.screensCount": "{{count}} screens",
|
|
5940
|
-
"detailView.noTransitionData": "No transition data",
|
|
5941
|
-
"orbInspector.required": "req",
|
|
5942
|
-
"orbInspector.addField": "Add Field",
|
|
5943
|
-
"orbInspector.serviceMode": "Service Mode",
|
|
5944
|
-
"orbInspector.standalone": "Standalone",
|
|
5945
|
-
"orbInspector.embedded": "Embedded",
|
|
5946
|
-
"orbInspector.rendersOwnUi": "Renders its own UI",
|
|
5947
|
-
"orbInspector.headless": "Headless, wired to other behaviors",
|
|
5948
|
-
"orbInspector.addEffect": "Add Effect",
|
|
5949
|
-
"orbInspector.guardExpression": "Guard expression",
|
|
5950
|
-
"orbInspector.selectPatternForStyles": "Select a pattern to view its style tokens.",
|
|
5951
|
-
"orbInspector.tokens": "Tokens",
|
|
5952
|
-
"orbInspector.noTokenContract": "No token contract declared for this pattern.",
|
|
5953
|
-
"orbInspector.variant": "Variant",
|
|
5954
|
-
"orbInspector.size": "Size",
|
|
5955
|
-
"orbInspector.statesCount": "{{count}} states",
|
|
5956
|
-
"orbInspector.onEntity": " on {{entity}}",
|
|
5957
|
-
"orbInspector.projectThemeTokens": "Project theme tokens",
|
|
5958
|
-
"orbInspector.tokenGroup.colors": "Colors",
|
|
5959
|
-
"orbInspector.tokenGroup.radii": "Radii",
|
|
5960
|
-
"orbInspector.tokenGroup.spacing": "Spacing",
|
|
5961
|
-
"orbInspector.tokenGroup.shadows": "Shadows",
|
|
5962
|
-
"orbInspector.tab.inspector": "Inspector",
|
|
5963
|
-
"orbInspector.tab.styles": "Styles",
|
|
5964
|
-
"orbInspector.tab.code": "Code",
|
|
5965
|
-
"canvas.goBackToOverview": "Go back to overview",
|
|
5966
|
-
"canvas.overview": "Overview",
|
|
5967
|
-
"canvas.expanded": "Expanded",
|
|
5968
|
-
"canvas.modulesCount": "{{count}} modules",
|
|
5969
|
-
"canvas.screensCount": "{{count}} screens",
|
|
5970
|
-
"canvas.switchToView": "Switch to {{label}} view",
|
|
5971
|
-
"lawReference.viewFullText": "View full law text",
|
|
5972
|
-
"statCard.defaultLabel": "Stat",
|
|
5973
|
-
"statCard.vsLastPeriod": "vs last period",
|
|
5974
|
-
"mediaGallery.upload": "Upload",
|
|
5975
|
-
"mediaGallery.noMediaDescription": "No media items to display.",
|
|
5976
|
-
"pagination.jumpPlaceholder": "Page",
|
|
5977
|
-
"table.selectRow": "Select row {{id}}",
|
|
5978
|
-
"card.selectItem": "Select {{item}}",
|
|
5979
|
-
"card.itemFallback": "item",
|
|
5980
|
-
"fileTree.noFiles": "No files",
|
|
5981
|
-
"masterDetail.selectItem": "Select an item to view details",
|
|
5982
|
-
"empty.createFirst": "Create your first item to get started.",
|
|
5983
|
-
"upload.dropOrBrowse": "Drop files here or click to browse",
|
|
5984
|
-
"upload.dropFilesHere": "Drop files here",
|
|
5985
|
-
"upload.accepted": "Accepted: {{accept}}",
|
|
5986
|
-
"upload.maxSize": "Max size: {{size}}",
|
|
5987
|
-
"upload.maxFiles": "Up to {{count}} files",
|
|
5988
|
-
"upload.error.maxFiles": "Maximum {{count}} files allowed",
|
|
5989
|
-
"upload.error.invalidType": "Invalid file type: {{name}}",
|
|
5990
|
-
"upload.error.tooLarge": "File too large: {{name}} (max {{size}})",
|
|
5991
|
-
"optionConstraint.requiredOne": "Required, pick 1",
|
|
5992
|
-
"optionConstraint.optionalOne": "Optional, pick up to 1",
|
|
5993
|
-
"optionConstraint.pickExactly": "Pick exactly {{count}}",
|
|
5994
|
-
"optionConstraint.pickRange": "Pick {{min}}-{{max}}",
|
|
5995
|
-
"optionConstraint.pickAtLeast": "Pick at least {{count}}",
|
|
5996
|
-
"optionConstraint.pickUpTo": "Pick up to {{count}}",
|
|
5997
|
-
"optionConstraint.optional": "Optional",
|
|
5998
|
-
"optionConstraint.outOfStock": "Out of stock",
|
|
5999
|
-
"optionConstraint.error.pickOne": "Pick 1 option",
|
|
6000
|
-
"optionConstraint.error.pickOnlyOne": "Pick only 1 option",
|
|
6001
|
-
"optionConstraint.error.pickMore": "Pick at least {{count}} more",
|
|
6002
|
-
"optionConstraint.error.removeOptions": "Remove {{count}} options",
|
|
6003
|
-
"stateMachine.pinned": "Pinned",
|
|
6004
|
-
"stateMachine.eventCount": "{{count}} events",
|
|
6005
|
-
"stateMachine.externalEffects": "External Effects",
|
|
6006
|
-
"stateMachine.legend.initial": "Initial",
|
|
6007
|
-
"stateMachine.legend.final": "Final",
|
|
6008
|
-
"stateMachine.legend.state": "State",
|
|
6009
|
-
"stateMachine.legend.multiEvent": "Multi-event",
|
|
6010
|
-
"relationSelect.selectPlaceholder": "Select..."
|
|
6011
|
-
};
|
|
6012
|
-
|
|
6013
|
-
// hooks/useTranslate.ts
|
|
6014
|
-
var { $meta: _meta, ...coreMessages } = en_default;
|
|
6015
|
-
var coreLocale = coreMessages;
|
|
6016
|
-
var I18nContext = createContext({
|
|
6017
|
-
locale: "en",
|
|
6018
|
-
direction: "ltr",
|
|
6019
|
-
t: (key) => coreLocale[key] ?? key
|
|
6020
|
-
// core locale fallback
|
|
6021
|
-
});
|
|
6022
|
-
I18nContext.displayName = "I18nContext";
|
|
6023
|
-
I18nContext.Provider;
|
|
6024
|
-
function useTranslate() {
|
|
6025
|
-
return useContext(I18nContext);
|
|
6026
|
-
}
|
|
6027
5540
|
function CameraController2({ targetPosition, targetLookAt, animated }) {
|
|
6028
5541
|
const { camera } = useThree();
|
|
6029
5542
|
const targetPosVec = useRef(new THREE6.Vector3(...targetPosition));
|