-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathi18n.ts
More file actions
3879 lines (3838 loc) · 216 KB
/
Copy pathi18n.ts
File metadata and controls
3879 lines (3838 loc) · 216 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
/**
* Metadata admin i18n bundle (Phase 3f).
*
* Lightweight static label table for the 27 built-in metadata types,
* plus a tiny `t()` helper for engine UI strings.
*
* Why not i18next? The engine already consumes `label` from the
* server's `/meta/types` response (which is sourced from
* `DEFAULT_METADATA_TYPE_REGISTRY`). This bundle exists as a fallback
* for environments without translation bundles configured, and as the
* single source of truth for Chinese labels until the platform's
* `setup.translation.ts` ships zh-CN coverage.
*
* Usage:
* import { translateMetadataType, t } from './i18n';
* translateMetadataType('view', 'zh-CN') // → '视图'
* t('engine.directory.title', 'zh-CN') // → '元数据'
*
* The DirectoryPage / PageShell call these to localise headings when
* the consumer hasn't wired the global i18n provider.
*/
import { useObjectTranslation } from '@object-ui/i18n';
export type SupportedLocale = 'en-US' | 'zh-CN';
const TYPE_LABELS_EN: Record<string, string> = {
// Data
object: 'Object',
field: 'Field',
trigger: 'Trigger',
validation: 'Validation Rule',
hook: 'Hook',
// UI
view: 'View',
page: 'Page',
dashboard: 'Dashboard',
app: 'Application',
action: 'Action',
report: 'Report',
// Automation
flow: 'Flow',
// ADR-0020: `workflow` retired as a metadata type.
approval: 'Approval Process',
// System
datasource: 'Datasource',
translation: 'Translation',
router: 'Router',
function: 'Function',
service: 'Service',
email_template: 'Email Template',
book: 'Documentation Book',
// Security — ADR-0090: profile removed (D2), role renamed to position (D3).
permission: 'Permission Set',
position: 'Position',
// AI
agent: 'AI Agent',
tool: 'AI Tool',
skill: 'AI Skill',
// Platform
package: 'Package',
data: 'Dataset',
job: 'Background Job',
// New in spec 7.1 — externally surfaced metadata types that did not
// ship with a human-readable label in the framework registry.
api: 'API Endpoint',
connector: 'Connector',
mapping: 'Field Mapping',
policy: 'Policy',
webhook: 'Webhook',
theme: 'Theme',
sharing_rule: 'Sharing Rule',
analytics_cube: 'Analytics Cube',
};
const TYPE_LABELS_ZH: Record<string, string> = {
object: '对象',
field: '字段',
trigger: '触发器',
validation: '校验规则',
hook: '钩子',
view: '视图',
page: '页面',
dashboard: '仪表板',
app: '应用',
action: '操作',
report: '报表',
flow: '流程',
// ADR-0020: `workflow` 已不再是独立元数据类型。
approval: '审批流程',
datasource: '数据源',
translation: '翻译',
router: '路由',
function: '函数',
service: '服务',
email_template: '邮件模板',
book: '文档手册',
permission: '权限集',
position: '岗位',
agent: 'AI 智能体',
tool: 'AI 工具',
skill: 'AI 技能',
package: '包',
data: '数据集',
job: '后台任务',
// New in spec 7.1.
api: 'API 端点',
connector: '连接器',
mapping: '字段映射',
policy: '策略',
webhook: 'Webhook 回调',
theme: '主题',
sharing_rule: '共享规则',
analytics_cube: '分析立方体',
};
const DOMAIN_LABELS_EN: Record<string, string> = {
data: 'Data',
ui: 'UI',
automation: 'Automation',
ai: 'AI',
system: 'System',
platform: 'Platform',
identity: 'Identity',
security: 'Security',
other: 'Other',
};
const DOMAIN_LABELS_ZH: Record<string, string> = {
data: '数据',
ui: '界面',
automation: '自动化',
ai: 'AI',
system: '系统',
platform: '平台',
identity: '身份',
security: '安全',
other: '其他',
};
const ENGINE_STRINGS_EN: Record<string, string> = {
'engine.directory.title': 'All Metadata Types',
'engine.directory.description':
'The platform protocol exposes {count} metadata types ({writable} writable at runtime). Click any tile to browse, override, or create instances.',
'engine.directory.search': 'Search metadata types…',
'engine.directory.writableOnly': 'Writable only',
'engine.directory.quickFind': 'Quick Find',
'engine.directory.noMatches': 'No matches',
'engine.directory.noMatchesHint': 'Adjust your search or filters to see more metadata types.',
'engine.directory.loading': 'Loading metadata types…',
'engine.directory.loadFailed': 'Failed to load metadata types',
'engine.directory.all': 'All',
'engine.directory.diagnosticsLink': 'View all issues ({count})',
'engine.directory.invalidTooltip': '{count} invalid item(s) — click to fix',
'engine.directory.warnTooltip': '{count} item(s) with warnings',
'engine.directory.itemCountTooltip': '{count} item(s) of this type',
'engine.directory.allPackages': 'All packages',
'engine.directory.packageFilter': 'Package',
'engine.home.greetingMorning': 'Good morning',
'engine.home.greetingAfternoon': 'Good afternoon',
'engine.home.greetingEvening': 'Good evening',
'engine.home.subtitle': 'Your control center for modeling data, designing experiences, and automating the platform.',
'engine.home.statTypes': 'Metadata types',
'engine.home.statWritable': 'Runtime-writable',
'engine.home.statPackages': 'Packages',
'engine.home.statIssues': 'Open issues',
'engine.home.allHealthy': 'All healthy',
'engine.home.allHealthyHint': 'No validation issues across your metadata.',
'engine.home.issuesHint': '{count} item(s) need attention.',
'engine.home.explore': 'Explore',
'engine.home.exploreHint': 'Jump into any domain of the platform.',
'engine.home.quickActions': 'Quick actions',
'engine.home.quickActionsHint': 'Create new metadata in one click.',
'engine.home.newItem': 'New {label}',
'engine.home.recent': 'Recently viewed',
'engine.home.recentEmpty': 'Nothing here yet — items you open will appear for quick access.',
'engine.home.browseAll': 'Browse all metadata',
'engine.home.openDiagnostics': 'Review diagnostics',
'engine.home.viewDomain': 'View',
'engine.home.typesLower': 'types',
'engine.home.loading': 'Loading your workspace…',
'engine.diagnostics.title': 'Metadata Diagnostics',
'engine.diagnostics.description':
'Every metadata item that failed load-time validation, grouped by type. Errors block features that depend on the item; warnings are advisory.',
'engine.diagnostics.back': 'Back to metadata',
'engine.diagnostics.refresh': 'Refresh',
'engine.diagnostics.loading': 'Scanning metadata…',
'engine.diagnostics.loadFailed': 'Failed to load diagnostics: {error}',
'engine.diagnostics.summary': '{count} issue(s) across {items} items in {types} types',
'engine.diagnostics.cleanTitle': 'All clear',
'engine.diagnostics.cleanHint': 'Scanned {items} item(s) across {types} type(s) — no issues found.',
'engine.diagnostics.severity.error': 'Errors',
'engine.diagnostics.severity.warning': 'Errors + Warnings',
'engine.diagnostics.col.name': 'Item',
'engine.diagnostics.col.issues': 'Issues',
'engine.diagnostics.errorN': '{count} error(s)',
'engine.diagnostics.warnN': '{count} warning(s)',
'engine.diagnostics.more': '+{count} more…',
'engine.list.create': 'New',
'engine.list.refresh': 'Refresh',
'engine.list.search': 'Search name, label, description…',
'engine.list.empty': 'No items yet.',
'engine.list.items': 'Items',
'engine.list.filtered': 'Filtered',
'engine.list.invalid': 'Invalid',
'engine.list.warnings': 'Warnings',
'engine.list.invalidTitle': 'Invalid metadata',
'engine.list.invalidCount': '{count} validation error(s):',
'engine.list.warnTitle': 'Metadata warnings',
'engine.list.warnCount': '{count} warning(s):',
'engine.list.allSources': 'All sources',
'engine.list.allPackages': 'All packages',
'engine.package.writableRequired': 'Pick or create a writable base (package) first — this item cannot be authored into a read-only code package.',
'engine.list.packageFilter': 'Package',
'engine.list.source.artifact': 'Artifact',
'engine.list.source.runtime': 'Runtime',
'engine.list.source.artifactDesc': 'Shipped by code package',
'engine.list.source.runtimeDesc': 'Authored at runtime',
'engine.list.col.name': 'Name',
'engine.list.col.label': 'Label',
'engine.list.col.source': 'Source',
'engine.list.col.object': 'Object',
'engine.list.col.type': 'Type',
'engine.list.col.description': 'Description',
'engine.list.emptyType': 'No {type} items registered',
'engine.list.emptyQuery': 'No matches for "{query}"',
'engine.list.createHint': 'Click "New" above to create the first {type}.',
'engine.list.readOnlyHint':
'This type is read-only — instances are defined by code artifacts in packages.',
'engine.edit.save': 'Save',
'engine.edit.publish': 'Publish',
'engine.edit.publishBlockedDirty': 'Save first, then publish.',
'engine.edit.discardDraft': 'Discard draft',
'engine.edit.discardDraftConfirm': 'Discard the pending draft for {type}/{name}?',
'engine.edit.draftPending': 'Pending changes — save lives in a draft. Click Publish to release.',
'engine.edit.rollback': 'Rollback to this version',
'engine.edit.rollbackConfirm': 'Restore version {version}? This writes the historical body back as the current published overlay.',
'engine.edit.reset': 'Reset overlay',
'engine.edit.resetConfirm': 'Reset overlay for {type}/{name}?',
'engine.edit.delete': 'Delete',
'engine.edit.deleteConfirm': 'Delete {type}/{name}? This cannot be undone.',
'engine.edit.lockFull': 'This item is locked and cannot be edited or deleted.',
'engine.edit.lockNoOverlay': 'This item is locked and cannot be edited.',
'engine.edit.lockNoDelete': 'This item is locked and cannot be deleted.',
'engine.edit.history': 'History',
'engine.edit.auditTab': 'Audit log',
'engine.edit.auditCount': 'events',
'engine.edit.auditEmptyTitle': 'No audit events yet',
'engine.edit.auditEmptyDescription': 'No save, publish, rollback, delete or reset attempts have been recorded for this item. Once someone tries to change it (allowed or denied), the attempt will appear here.',
'engine.edit.auditColTime': 'Time',
'engine.edit.auditColActor': 'Actor',
'engine.edit.auditColOperation': 'Operation',
'engine.edit.auditColOutcome': 'Outcome',
'engine.edit.auditColLock': 'Lock',
'engine.edit.auditColNote': 'Note',
'engine.edit.refresh': 'Refresh',
'engine.edit.layers': 'Layers',
'engine.layers.code': 'Code',
'engine.layers.overlay': 'Overlay',
'engine.layers.effective': 'Effective',
'engine.layers.diff': 'Diff',
'engine.layers.diff.field': 'Field',
'engine.layers.diff.code': 'Code (artifact)',
'engine.layers.diff.effective': 'Effective',
'engine.layers.diff.status': 'Status',
'engine.layers.diff.unchanged': 'unchanged',
'engine.layers.diff.modified': 'modified',
'engine.layers.diff.added': 'added',
'engine.layers.diff.removed': 'removed',
'engine.layers.diff.showUnchanged': 'Show unchanged',
'engine.layers.diff.noChanges': 'Overlay matches the code value — no field-level differences.',
'engine.layers.diff.noBaseline': 'No code-level artifact to compare against. All fields are runtime-authored.',
'engine.layers.diff.summary': '{modified} modified · {added} added · {removed} removed',
'engine.edit.overlaidCount': '{count} overlaid',
'engine.edit.noOverlay': 'no overlay',
'engine.edit.references': 'References',
'engine.edit.form': 'Form',
'engine.edit.edit': 'Edit',
'engine.edit.editOverlay': 'Edit overlay',
'engine.edit.createNew': 'Create new',
'engine.edit.detail': 'Detail',
'engine.edit.preview': 'Preview',
'engine.edit.designer': 'Designer',
'engine.edit.related': 'Related',
'engine.edit.hideInspector': 'Hide inspector',
'engine.edit.showInspector': 'Show inspector',
'engine.edit.noChanges': 'No changes to save',
'engine.edit.inspector': 'Inspector',
'engine.edit.inspector.properties': 'Properties',
'engine.edit.inspector.source': 'Source',
'engine.edit.fullscreen': 'Fullscreen',
'engine.edit.exitFullscreen': 'Exit fullscreen',
'engine.edit.designMode': 'Design',
'engine.edit.previewMode': 'Preview',
'engine.inspector.widget.kind': 'Widget',
'engine.inspector.widget.close': 'Close widget',
'engine.inspector.widget.title': 'Title',
'engine.inspector.widget.type': 'Type',
'engine.inspector.widget.object': 'Data Source (Object)',
'engine.inspector.widget.valueField': 'Value Field',
'engine.inspector.widget.categoryField': 'Category Field',
'engine.inspector.widget.aggregate': 'Aggregate',
'engine.inspector.widget.color': 'Color Variant',
'engine.inspector.widget.width': 'Width',
'engine.inspector.widget.height': 'Height',
'engine.inspector.widget.remove': 'Remove widget',
// Dataset binding (ADR-0021) — governed cross-object semantic layer.
'engine.inspector.widget.datasetSection': 'Dataset binding',
'engine.inspector.widget.dataset': 'Dataset',
'engine.inspector.widget.datasetPlaceholder': 'e.g. sales_pipeline',
'engine.inspector.widget.datasetHint':
'Bind a governed dataset. When set, it takes precedence over the inline object query above and the widget renders via the dataset (consistent, cross-object, RLS-enforced).',
'engine.inspector.widget.dimensions': 'Dimensions',
'engine.inspector.widget.dimensionsPlaceholder': 'e.g. stage, region (comma-separated)',
'engine.inspector.widget.dimensionsHint':
'Dataset dimension names to group by. Leave empty for a single-value KPI metric.',
'engine.inspector.widget.values': 'Values (measures)',
'engine.inspector.widget.valuesPlaceholder': 'e.g. revenue, deal_count (comma-separated)',
'engine.inspector.widget.valuesHint': 'Dataset measure names to show.',
// Dashboard filter bindings (framework#2501)
'engine.inspector.widget.filterBindingsSection': 'Dashboard filter bindings',
'engine.inspector.widget.filterBindingsHint':
'Map each dashboard-level filter to one of this widget’s own fields, or untick Apply to opt the widget out. Empty = the filter’s own field.',
'engine.inspector.widget.filterBindingApply': 'Apply',
'engine.inspector.widget.filterBindingDefault': 'Default ({field})',
'engine.inspector.widget.filterBindingReset': 'Reset',
// Flow node inspector
'engine.inspector.flowNode.kind': 'Node',
'engine.inspector.flowNode.close': 'Close node',
'engine.inspector.flowNode.id': 'ID',
'engine.inspector.flowNode.label': 'Label',
'engine.inspector.flowNode.type': 'Node Type',
'engine.inspector.flowNode.description': 'Description',
'engine.inspector.flowNode.configuration': 'Configuration',
'engine.inspector.flowNode.config': 'Config (JSON)',
'engine.inspector.flowNode.advanced': 'Advanced (JSON)',
'engine.inspector.flowNode.advancedHint': 'Optional custom keys not covered by the form above — most flows don\u2019t need this.',
'engine.inspector.flowNode.noConfig': 'No configuration needed for this node type.',
'engine.inspector.flowNode.nestedIdHint': 'A node inside a container region keeps its id here — rename it in the container’s Advanced JSON.',
'engine.inspector.flowNode.kv.add': 'Add entry',
'engine.inspector.flowNode.kv.key': 'Key',
'engine.inspector.flowNode.kv.value': 'Value',
'engine.inspector.flowNode.kv.remove': 'Remove entry',
'engine.inspector.flowNode.kv.empty': 'No entries yet.',
'engine.inspector.flowNode.list.add': 'Add item',
'engine.inspector.flowNode.list.item': 'Value',
'engine.inspector.flowNode.list.remove': 'Remove item',
'engine.inspector.flowNode.list.empty': 'No items yet.',
'engine.inspector.flowNode.remove': 'Remove node',
// Flow edge (connection) inspector
'engine.inspector.flowEdge.kind': 'Connection',
'engine.inspector.flowEdge.close': 'Close connection',
'engine.inspector.flowEdge.missing': 'This connection no longer exists.',
'engine.inspector.flowEdge.source': 'From',
'engine.inspector.flowEdge.target': 'To',
'engine.inspector.flowEdge.routing': 'Routing',
'engine.inspector.flowEdge.branch': 'Branch',
'engine.inspector.flowEdge.label': 'Branch label',
'engine.inspector.flowEdge.labelHint': 'e.g. approve / reject',
'engine.inspector.flowEdge.condition': 'Condition',
'engine.inspector.flowEdge.conditionHint': 'CEL expression — taken when it evaluates true',
'engine.inspector.flowEdge.isDefault': 'Default branch (else)',
'engine.inspector.flowEdge.hint': 'The engine follows this connection when its branch label is selected or its condition is met. The default branch is taken when no other matches.',
'engine.inspector.flowEdge.remove': 'Remove connection',
'engine.inspector.flowEdge.approvalBranch': 'Approval branch',
'engine.inspector.flowEdge.branchApprove': 'Approve',
'engine.inspector.flowEdge.branchReject': 'Reject',
'engine.inspector.flowEdge.branchRevise': 'Revise — send back',
'engine.inspector.flowEdge.branchCustom': '— Custom —',
'engine.inspector.flowEdge.connection': 'Connection',
'engine.inspector.flowEdge.type': 'Type',
'engine.inspector.flowEdge.typeDefault': 'Normal',
'engine.inspector.flowEdge.typeConditional': 'Conditional',
'engine.inspector.flowEdge.typeFault': 'Fault (error path)',
'engine.inspector.flowEdge.typeBack': 'Back-edge (revise loop)',
'engine.inspector.flowEdge.backHint': 'A back-edge re-enters an earlier node to close a loop (e.g. an approval revise loop). It is traversed normally at run time but excluded from cycle validation.',
// Workflow action inspector
'engine.inspector.workflowAction.kind': 'Action',
'engine.inspector.workflowAction.close': 'Close action',
'engine.inspector.workflowAction.type': 'Action Type',
'engine.inspector.workflowAction.name': 'Name',
'engine.inspector.workflowAction.config': 'Config (JSON)',
'engine.inspector.workflowAction.remove': 'Remove action',
// App nav inspector
'engine.inspector.appNav.kind': 'Nav Item',
'engine.inspector.appNav.close': 'Close nav item',
'engine.inspector.appNav.label': 'Label',
'engine.inspector.appNav.icon': 'Icon',
'engine.inspector.appNav.remove': 'Remove nav item',
'engine.inspector.appNav.typeField': 'Type',
'engine.inspector.appNav.type.object': 'Object',
'engine.inspector.appNav.type.page': 'Page',
'engine.inspector.appNav.type.dashboard': 'Dashboard',
'engine.inspector.appNav.type.report': 'Report',
'engine.inspector.appNav.type.url': 'Link (URL)',
'engine.inspector.appNav.type.group': 'Group',
'engine.inspector.appNav.object': 'Object',
'engine.inspector.appNav.targetMode': 'Landing',
'engine.inspector.appNav.mode.default': 'Default view (workspace)',
'engine.inspector.appNav.mode.view': 'Named view',
'engine.inspector.appNav.mode.record': 'Record deep-link',
'engine.inspector.appNav.mode.filters': 'Filtered slice (/data)',
'engine.inspector.appNav.view': 'View',
'engine.inspector.appNav.recordId': 'Record ID',
'engine.inspector.appNav.recordIdHint': 'Supports {current_user_id} and {current_org_id} template variables.',
'engine.inspector.appNav.recordMode': 'Open mode',
'engine.inspector.appNav.recordModeView': 'View',
'engine.inspector.appNav.recordModeEdit': 'Edit',
'engine.inspector.appNav.filters': 'URL filters',
'engine.inspector.appNav.filtersField': 'Field',
'engine.inspector.appNav.filtersValue': 'Value',
'engine.inspector.appNav.filtersAdd': 'Add condition',
'engine.inspector.appNav.filtersRemove': 'Remove condition',
'engine.inspector.appNav.filtersHint': 'One-off slice carried in the URL — promote it to a named view when it becomes curated and reused.',
'engine.inspector.appNav.url': 'URL',
'engine.inspector.appNav.urlTarget': 'Open in',
'engine.inspector.appNav.urlTargetSelf': 'Same tab',
'engine.inspector.appNav.urlTargetBlank': 'New tab',
'engine.inspector.appNav.preview': 'Resolved link',
// View column inspector
'engine.inspector.viewColumn.kind': 'Column',
'engine.inspector.viewColumn.close': 'Close column',
'engine.inspector.viewColumn.header': 'Header',
'engine.inspector.viewColumn.accessorKey': 'Field key',
'engine.inspector.viewColumn.width': 'Width',
'engine.inspector.viewColumn.align': 'Align',
'engine.inspector.viewColumn.sortable': 'Sortable',
'engine.inspector.viewColumn.filterable': 'Filterable',
'engine.inspector.viewColumn.remove': 'Remove column',
'engine.inspector.viewColumn.outlineLabel': 'Columns',
// View variant inspector (the View "home" panel — also hosted by the
// runtime ObjectView's right-rail view editor)
'engine.inspector.view.kind': 'View',
'engine.inspector.view.close': 'Close',
'engine.inspector.view.label': 'Label',
'engine.inspector.view.labelPlaceholder': 'e.g. All Leads',
'engine.inspector.view.type': 'View type',
'engine.inspector.view.object': 'Object',
'engine.inspector.view.objectPlaceholder': 'e.g. crm_lead',
'engine.inspector.view.noSchema': 'Spec schema unavailable — basic properties only.',
// Conditional formatting editor (list/grid views)
'engine.inspector.view.cf.title': 'Conditional formatting',
'engine.inspector.view.cf.add': 'Add rule',
'engine.inspector.view.cf.empty': 'No rules. Add one to color rows by a CEL condition.',
'engine.inspector.view.cf.rule': 'Rule',
'engine.inspector.view.cf.when': 'When (CEL)',
'engine.inspector.view.cf.background': 'Background',
'engine.inspector.view.cf.text': 'Text',
'engine.inspector.view.cf.border': 'Border',
'engine.inspector.view.cf.preview': 'Preview',
'engine.inspector.view.cf.remove': 'Remove rule',
'engine.inspector.view.cf.moveUp': 'Move up',
'engine.inspector.view.cf.moveDown': 'Move down',
// ConditionBuilder raw-expression mode (CEL editor, #1582)
'engine.condition.celLabel': 'CEL expression',
'engine.condition.advancedHint': 'Advanced expression — Builder only supports simple AND/OR conditions.',
'engine.inspector.view.type.grid': 'Table / List',
'engine.inspector.view.type.kanban': 'Kanban',
'engine.inspector.view.type.calendar': 'Calendar',
'engine.inspector.view.type.gallery': 'Gallery',
'engine.inspector.view.type.gantt': 'Gantt',
'engine.inspector.view.type.timeline': 'Timeline',
'engine.inspector.view.type.map': 'Map',
'engine.inspector.view.type.chart': 'Chart',
// Page block inspector
'engine.inspector.pageBlock.kind': 'Block',
'engine.inspector.pageBlock.close': 'Close block',
'engine.inspector.pageBlock.type': 'Type',
'engine.inspector.pageBlock.id': 'ID',
'engine.inspector.pageBlock.className': 'Class names',
'engine.inspector.pageBlock.hidden': 'Hidden (CEL)',
'engine.inspector.pageBlock.properties': 'Properties',
'engine.inspector.pageBlock.advanced': 'Advanced',
'engine.inspector.pageBlock.remove': 'Remove block',
'engine.inspector.pageBlock.outlineLabel': 'Blocks',
// Report default ("home") inspector
'engine.inspector.report.kind': 'Report',
'engine.inspector.report.close': 'Close report',
'engine.inspector.report.name': 'Name',
'engine.inspector.report.nameHint': 'snake_case identifier (cannot change after create)',
'engine.inspector.report.namePlaceholder': 'e.g. pipeline_by_stage',
'engine.inspector.report.label': 'Label',
'engine.inspector.report.labelPlaceholder': 'e.g. Pipeline by Stage',
'engine.inspector.report.type': 'Report type',
'engine.inspector.report.type.tabular': 'Tabular',
'engine.inspector.report.type.summary': 'Summary',
'engine.inspector.report.type.matrix': 'Matrix',
'engine.inspector.report.type.joined': 'Joined',
'engine.inspector.report.dataset': 'Dataset',
'engine.inspector.report.datasetPlaceholder': 'e.g. sales_metrics',
'engine.inspector.report.values': 'Values (measures)',
'engine.inspector.report.valuesEmpty': 'No measures yet. Add one from the dataset below.',
'engine.inspector.report.rows': 'Rows (dimensions)',
'engine.inspector.report.rowsEmpty': 'No dimensions yet. Add one from the dataset below.',
'engine.inspector.report.columnsAcross': 'Columns (across dimensions)',
'engine.inspector.report.columnsAcrossEmpty': 'No across dimensions yet — the matrix pivots rows × columns.',
'engine.inspector.report.chart': 'Chart',
'engine.inspector.report.chartType': 'Chart type',
'engine.inspector.report.chartNone': 'None (table only)',
'engine.inspector.report.chartTitle': 'Chart title',
'engine.inspector.report.chartX': 'X-Axis (dimension)',
'engine.inspector.report.chartY': 'Y-Axis (measure)',
'engine.inspector.report.noSchema': 'Spec schema unavailable — basic properties only.',
// Trailing section for fields the live server has but the bundled spec lacks.
'engine.inspector.moreFields': 'More fields',
// Action default (home) inspector
'engine.inspector.action.kind': 'Action',
'engine.inspector.action.close': 'Close action',
'engine.inspector.hook.kind': 'Hook',
// Dashboard default (home) inspector
'engine.inspector.dashboard.kind': 'Dashboard',
'engine.inspector.dashboard.close': 'Close dashboard',
'engine.inspector.dashboard.label': 'Label',
'engine.inspector.dashboard.labelPlaceholder': 'e.g. Sales Overview',
'engine.inspector.dashboard.description': 'Description',
'engine.inspector.dashboard.descriptionPlaceholder': 'Optional summary shown in the header',
'engine.inspector.dashboard.widgets': 'Widgets',
'engine.inspector.dashboard.widgetsEmpty': 'No widgets yet. Add one below.',
'engine.inspector.dashboard.removeWidget': 'Remove widget',
'engine.inspector.dashboard.noSchema': 'Spec schema unavailable — basic properties only.',
// Add affordances (used by OutlineStrip + custom previews)
'engine.inspector.add.widget': 'Add widget',
'engine.inspector.add.block': 'Add block',
'engine.inspector.add.node': 'Add node',
'engine.inspector.add.step': 'Add step',
'engine.inspector.add.action': 'Add action',
'engine.inspector.add.nav': 'Add nav item',
// Flow designer add-node palette (search box + recents, #1943)
'engine.flowPalette.search': 'Search nodes…',
'engine.flowPalette.empty': 'No matching nodes.',
'engine.flowPalette.recent': 'Recently used',
// Palette section headings (localized display; the canonical NodeCategory
// literals stay English as in-memory bucket keys — see flow-canvas-parts).
'engine.flowPalette.category.data': 'Data',
'engine.flowPalette.category.logic': 'Logic',
'engine.flowPalette.category.human': 'Human',
'engine.flowPalette.category.integration': 'Integration',
'engine.flowPalette.category.flow': 'Flow',
// Flow canvas chrome — toolbar, node affordances, banner (FlowCanvas /
// flow-canvas-parts). Node-type labels/hints live in the strings table too
// (engine.flowNode.*) but are resolved via translateNodeLabel/Hint so the
// server descriptor stays the source of truth in English.
'engine.flowCanvas.zoomOut': 'Zoom out',
'engine.flowCanvas.zoomIn': 'Zoom in',
'engine.flowCanvas.fit': 'Fit to view',
'engine.flowCanvas.canvas': 'Flow canvas',
'engine.flowCanvas.reveal': 'Reveal on canvas',
'engine.flowCanvas.moreErrors': '+{count} more…',
'engine.flowCanvas.insertNode': 'Insert node here',
'engine.flowCanvas.addConnected': 'Add connected node',
'engine.flowCanvas.addReviseLoop': 'Add revision loop (send back for revision)',
'engine.flowCanvas.addReviseLoopShort': 'Add revision loop',
'engine.flowCanvas.awaitingRevision': 'Awaiting Revision',
'engine.flowCanvas.collapseRegions': 'Collapse nested regions',
'engine.flowCanvas.expandRegions': 'Expand nested regions',
// Nested structured-region tray headers (FlowRegionView / extractRegions).
'engine.flowRegion.branchN': 'Branch {n}',
'engine.flowRegion.try': 'Try',
'engine.flowRegion.catch': 'Catch',
// Flow preview header — pills, panel toggles, empty states (FlowPreview).
'engine.flowPreview.emptyHint': 'Add nodes in the Form tab to see the flow preview.',
'engine.flowPreview.malformed': 'One of the flow nodes or edges is malformed.',
'engine.flowPreview.pill.trigger': 'Trigger',
'engine.flowPreview.pill.status': 'Status',
'engine.flowPreview.pill.runAs': 'Run as',
'engine.flowPreview.pill.onError': 'On error',
'engine.flowPreview.showVars': 'Show variables panel',
'engine.flowPreview.hideVars': 'Hide variables panel',
'engine.flowPreview.variables': 'Variables',
'engine.flowPreview.noVars': 'No variables declared.',
'engine.flowPreview.runsTitle': 'Run history from the automation engine',
'engine.flowPreview.runs': 'Runs',
'engine.flowPreview.problemsTitle': 'Validation problems',
'engine.flowPreview.problems': 'Problems',
'engine.flowPreview.debug': 'Debug',
// Flow run-history panel (FlowRunsPanel).
'engine.flowRuns.title': 'Runs',
'engine.flowRuns.refresh': 'Refresh run history',
'engine.flowRuns.unavailable':
'Run history unavailable — the automation engine is offline or this flow hasn’t been published.',
'engine.flowRuns.empty': 'No runs yet.',
'engine.flowRuns.noSteps': 'No step log recorded.',
'engine.flowRuns.iteration': 'Iteration',
'engine.flowRuns.iterationN': 'Iteration {n}',
'engine.flowRuns.branch': 'Branch',
'engine.flowRuns.branchN': 'Branch {n}',
'engine.flowRuns.try': 'Try',
'engine.flowRuns.catch': 'Catch',
'engine.flowRuns.status.completed': 'Completed',
'engine.flowRuns.status.failed': 'Failed',
'engine.flowRuns.status.paused': 'Paused',
'engine.flowRuns.status.running': 'Running',
'engine.flowRuns.status.cancelled': 'Cancelled',
// Flow debug simulator (FlowSimulatorPanel).
'engine.flowSim.run': 'Run',
'engine.flowSim.step': 'Step',
'engine.flowSim.continue': 'Continue',
'engine.flowSim.reset': 'Reset',
'engine.flowSim.add': 'Add',
'engine.flowSim.resumeBranch': 'Resume down the “{branch}” branch',
'engine.flowSim.screen': 'Screen',
'engine.flowSim.inputs': 'Inputs',
'engine.flowSim.setVariables': 'Set variables',
'engine.flowSim.setVariablesHint': 'Override or inject any variable (wins over inputs and mocks at start).',
'engine.flowSim.mockOutputs': 'Mock outputs',
'engine.flowSim.mockPlaceholder': 'mocked result (JSON)',
'engine.flowSim.variables': 'Variables',
'engine.flowSim.noVars': 'No variables set.',
'engine.flowSim.timeline': 'Timeline',
'engine.flowSim.namePlaceholder': 'name',
'engine.flowSim.valuePlaceholder': 'value',
'engine.flowSim.removeVariable': 'Remove variable',
'engine.flowSim.idleHint':
'Press Run to simulate, or Step to walk node by node. Side effects are mocked — no backend is called.',
'engine.flowSim.status.idle': 'idle',
'engine.flowSim.status.running': 'running',
'engine.flowSim.status.paused': 'paused',
'engine.flowSim.status.done': 'done',
'engine.flowSim.status.error': 'error',
// Structural flow validation (flow-sim-validate) — canvas banner, Problems
// panel, and the debug simulator.
'engine.flowValidate.nodeMissingId': 'A node is missing an id.',
'engine.flowValidate.duplicateNodeId': 'Duplicate node id "{id}".',
'engine.flowValidate.edgeSourceMissing': 'Edge source "{source}" does not exist.',
'engine.flowValidate.edgeTargetMissing': 'Edge target "{target}" does not exist.',
'engine.flowValidate.startHasIncoming': 'Start node has an incoming edge.',
'engine.flowValidate.multipleStart': 'Flow has {count} start nodes; expected one.',
'engine.flowValidate.noStartUsingRoot': 'No "start" node; using the only root node as the entry.',
'engine.flowValidate.noEntry': 'No entry node (every node has an incoming edge — the graph is fully cyclic).',
'engine.flowValidate.ambiguousEntry': 'Cannot determine a single entry node ({count} candidates). Add a "start" node.',
'engine.flowValidate.decisionMultipleDefaults': 'Decision "{id}" has {count} default branches.',
'engine.flowValidate.decisionNoBranches': 'Decision "{id}" has no outgoing branches.',
'engine.flowValidate.decisionNoDefault': 'Decision "{id}" has no default branch; it may dead-end when no condition matches.',
'engine.flowValidate.nodeUnreachable': 'Node "{id}" is unreachable from the entry.',
'engine.flowValidate.cycleDetected': 'Cycle detected ({cycle}). Mark the connection that closes the loop as a back-edge (Connection type → Back-edge) to declare an intentional revise/rework loop.',
// Unknown-reference (scope) warnings (flow-ref-check) — Problems panel + the
// inline expression-field warnings.
'engine.flowRef.unknownWithSuggestion': 'Unknown reference `{token}` — did you mean `{suggestion}`?',
'engine.flowRef.notInScope': '`{token}` is not a reference in scope at this step.',
'engine.flowRef.notInScopeMulti': 'Not in scope: {tokens}.',
// Problems panel (ProblemsPanel).
'engine.flowProblems.title': 'Problems',
'engine.flowProblems.empty': 'No problems — this flow is structurally valid.',
'engine.flowProblems.sourceSchema': 'schema',
'engine.flowProblems.sourceExpression': 'expression',
// References side panel (ResourceEditPage) empty state.
'engine.edit.refsScanning': 'Scanning references…',
'engine.edit.refsEmptyTitle': 'No references found',
'engine.edit.refsEmptyDesc': 'Nothing in the metadata graph points at this item. Safe to delete.',
// Destructive-change (force save) dialog (ResourceEditPage).
'engine.edit.destructiveTitle': 'Destructive change detected',
'engine.edit.destructiveDesc':
'The framework refused this save because it would drop or narrow data already in use. Review the issues and confirm to override.',
'engine.edit.forcing': 'Forcing…',
// History page / panel (ResourceHistoryPage).
'engine.edit.historySubtitle': 'Version history',
'engine.edit.historyEvents': 'Events',
'engine.edit.historyEmptyTitle': 'No history yet',
'engine.edit.historyEmptyDesc':
'This item has never been edited via an overlay. The first save will create the initial history record.',
// Reorder buttons (used in InspectorShell header)
'engine.inspector.reorder.up': 'Move up',
'engine.inspector.reorder.down': 'Move down',
'engine.edit.overlay': 'overlay',
'engine.edit.readOnlyBanner': 'Viewing in read-only mode. Click {edit} to make changes.',
'engine.edit.readOnlyTypeBanner':
'This metadata type is read-only for safety: it ships executable code or sensitive configuration and cannot be overlaid at runtime. Edit the source in your package and redeploy. To override this lock (use with caution), set {flag} to include {type}, or flip {override} in the registry.',
'engine.edit.artifactLockedBanner':
'This {type} is provided by an installed package, so it is read-only at runtime. To change it, edit it in its source package and republish — or create a new {type} from scratch.',
'engine.badge.createOnly': 'create-only',
'engine.repeater.empty': 'No items. Click + to add.',
'engine.badge.writable': 'writable',
'engine.badge.readOnly': 'read-only',
'engine.edit.readOnly': 'Read-only (runtime overrides disabled).',
'engine.edit.loading': 'Loading',
'engine.edit.bespokeDesigner': 'Designer',
'engine.edit.readOnlyHint':
'Read-only — this metadata type does not allow runtime overrides. Edit the source in the package and redeploy.',
'engine.edit.unsaved': 'Unsaved',
'engine.edit.unsavedHint': 'You have unsaved changes.',
'engine.edit.diagnostics.title':
'This metadata does not match the spec — {count} validation error(s).',
'engine.edit.diagnostics.warnTitle': '{count} warning(s) — review recommended.',
'engine.edit.diagnostics.more': '+{count} more…',
'engine.edit.loadFailed': 'Failed to load {type}/{name}: {message}',
'engine.edit.unsavedLeaveConfirm':
'You have unsaved changes. Leave this page anyway?',
'engine.edit.saving': 'Saving…',
'engine.edit.savedAt': 'Saved {time}',
'engine.edit.autoSaveOn': 'Auto-save is on — click to disable',
'engine.edit.autoSaveOff': 'Auto-save is off — click to enable',
'engine.edit.autoSavingShortly': 'Auto-saving…',
'engine.edit.destructive': 'Destructive change',
'engine.edit.destructiveHint':
'The change would break existing references. Review the issues and confirm to force-save.',
'engine.edit.forceSave': 'Force save',
'engine.cancel': 'Cancel',
'engine.close': 'Close',
'engine.form.select': 'Select...',
'engine.form.selectEllipsis': 'Select…',
'engine.form.add': 'Add',
'engine.form.addItem': 'Add item',
'engine.form.addRow': 'Add row',
'engine.form.remove': 'Remove',
'engine.form.removeRow': 'Remove row',
'engine.form.dragToReorder': 'Drag to reorder',
'engine.form.arrayPlaceholder': 'comma, separated, values',
'engine.form.loadingObjects': 'Loading objects…',
'engine.form.noObjects': 'object_name (no objects detected)',
'engine.form.selectObject': 'Select object…',
'engine.form.selectComponent': 'Select component…',
'engine.form.noComponents': 'component_id (no components on this page yet)',
'engine.form.selectObjectDots': 'Select object...',
'engine.form.addObjects': 'Add objects...',
'engine.form.loadingFields': 'Loading fields…',
'engine.form.selectObjectFirst': '(Select an object first)',
'engine.form.selectField': 'Select field…',
'engine.form.selectFieldDots': 'Select field...',
'engine.form.addFields': 'Add fields...',
'engine.form.noObjectBound': 'No object bound',
'engine.form.none': '— None —',
'engine.form.notInObject': '(not in object)',
'engine.form.searchIcons': 'Search icons…',
'engine.form.chooseIcon': 'Choose an icon',
'engine.form.iconsTruncated': 'Showing the first {shown} of {total} — type to narrow.',
'engine.form.noMatchingIcons': 'No matching icons.',
'engine.form.keep': 'Keep',
'engine.form.addField': 'Add field…',
'engine.form.addFieldPlain': 'Add field',
'engine.form.searchFields': 'Search fields…',
'engine.form.allFieldsAdded': 'All fields added',
'engine.form.noObjectFields': 'No object fields ({error}).',
'engine.form.noMatchingFields': 'No matching fields.',
'engine.form.noFieldsOnObject': 'No fields on this object.',
'engine.form.added': 'Added',
'engine.form.tagsPlaceholder': 'Type and press Enter…',
'engine.form.noRows': 'No rows. Click + to add.',
'engine.form.masterDetailSchemaError': 'master-detail widget requires items.properties on the JSON schema (or an anyOf branch that has them).',
'engine.form.missingField': 'Field {field} declared in form layout but missing from schema. Skipping.',
'engine.form.fallbackJson': 'widget {widget} — falling back to JSON until a custom renderer is registered.',
'engine.form.keyRequired': 'Key is required',
'engine.form.keyExists': 'Key "{key}" already exists',
'engine.form.keyPattern': 'Key must match {pattern}',
'engine.form.invalidJson': 'Invalid JSON',
'engine.form.rootJsonObject': 'Root must be a JSON object',
'engine.validation.invalid': 'Invalid input',
'engine.validation.pattern': 'Invalid string: must match pattern {pattern}',
'engine.validation.expectedStringUndefined': 'Required text value',
'engine.validation.expectedType': 'Invalid type: expected {expected}, received {received}',
'engine.validation.invalidOption': 'Invalid option: expected one of {options}',
'engine.validation.failed': 'Validation failed ({count} issues).',
'engine.validation.failedOne': 'Validation failed (1 issue).',
'engine.validation.nameRequired': 'A name is required.',
'engine.embedded.saved': 'Saved.',
'engine.embedded.readOnlyParent': 'The parent type is read-only — saving will still attempt a PUT and may be refused by the server.',
'engine.embedded.saveIntoParent': 'Save into {parentType}',
'engine.embedded.saveNoPath': 'Cannot save: this item has no embeddedPath registered.',
'engine.embedded.noSchema': 'No form schema is registered for {type}. Edit the raw JSON below; saving will splice it back into {target}.',
'engine.embedded.readOnly': 'Read-only',
'engine.embedded.noPathHint': 'No embedded path registered — cannot determine where to write this item back.',
'engine.packages.title': 'Packages',
'engine.packages.description': 'Author, publish, and manage the packages installed in this environment.',
'engine.packages.refresh': 'Refresh',
'engine.packages.import': 'Import',
'engine.packages.importing': 'Importing…',
'engine.packages.new': 'New Package',
'engine.packages.search': 'Search packages…',
'engine.packages.showPlatform': 'Show platform packages ({count})',
'engine.packages.empty': 'No packages',
'engine.packages.emptyCreate': 'Create your first package to start authoring metadata.',
'engine.packages.emptyFiltered': 'No packages match your filters.',
'engine.packages.loadFailed': 'Failed to load packages',
'engine.packages.col.name': 'Name',
'engine.packages.col.version': 'Version',
'engine.packages.col.scope': 'Scope',
'engine.packages.col.status': 'Status',
'engine.packages.scope.project': 'Read-only · code',
'engine.packages.scope.system': 'System',
'engine.packages.scope.cloud': 'Cloud',
'engine.packages.scope.writable': 'Writable',
'engine.packages.status.enabled': 'Enabled',
'engine.packages.status.disabled': 'Disabled',
'engine.packages.import.invalidJson': 'Selected file is not valid JSON.',
'engine.packages.import.invalidPackage': 'Invalid package file: missing "id" or "name".',
'engine.packages.import.success': 'Imported "{id}". Refresh the app switcher to use it.',
'engine.packages.import.failed': 'Import failed',
'engine.packages.create.title': 'New Package',
'engine.packages.create.description': 'Create a project-scoped package to author and publish your own metadata. The id should be reverse-domain (e.g. {example}).',
'engine.packages.create.id': 'Package ID',
'engine.packages.create.namespace': 'Object namespace',
'engine.packages.create.name': 'Display name',
'engine.packages.create.version': 'Version',
'engine.packages.create.versionInvalid': 'Use semantic version, e.g. 0.1.0',
'engine.packages.create.creating': 'Creating…',
'engine.packages.create.submit': 'Create package',
'engine.packages.create.failed': 'Failed to create package',
'engine.packages.create.exists': 'A package with this id already exists.',
'engine.packages.form.basics': 'Basics',
'engine.packages.form.advanced': 'Advanced',
'engine.packages.form.namespace': 'Namespace',
'engine.packages.form.defaultDatasource': 'Default datasource',
'engine.packages.form.scope': 'Scope',
'engine.packages.form.dependencies': 'Dependencies',
'engine.packages.view.title': 'Package info',
'engine.packages.detail.viewInfo': 'View info',
'engine.packages.detail.type': 'Type',
'engine.packages.detail.description': 'Description',
'engine.packages.detail.browseMetadata': "Browse this package's metadata",
'engine.packages.detail.pendingChanges': 'Pending changes',
'engine.packages.detail.pendingHint': 'Drafted, not yet published. Publish the whole app, or review each below.',
'engine.packages.detail.publishApp': 'Publish app ({count})',
'engine.packages.detail.discardChanges': 'Discard changes ({count})',
'engine.packages.detail.kernelReadOnly': 'This is a platform kernel package. Authoring actions are disabled.',
'engine.packages.detail.actions': 'Actions',
'engine.packages.detail.edit': 'Edit',
'engine.packages.edit.title': 'Edit package',
'engine.packages.edit.save': 'Save changes',
'engine.packages.edit.saving': 'Saving…',
'engine.packages.edit.saved': 'Package updated',
'engine.packages.edit.failed': 'Failed to update package',
'engine.packages.detail.publish': 'Publish',
'engine.packages.detail.publishing': 'Publishing…',
'engine.packages.detail.revert': 'Revert',
'engine.packages.detail.enable': 'Enable',
'engine.packages.detail.disable': 'Disable',
'engine.packages.detail.export': 'Export',
'engine.packages.detail.exporting': 'Exporting…',
'engine.packages.detail.deleteApp': 'Delete app',
'engine.packages.detail.deleting': 'Deleting…',
'engine.packages.detail.discarding': 'Discarding…',
'engine.packages.detail.actionFailed': 'Action failed',
'engine.packages.detail.publishBlocked': 'Publish blocked by {count} validation error(s).',
'engine.packages.detail.nothingToPublish': 'Nothing to publish.',
'engine.packages.detail.published': 'Package published.',
'engine.packages.detail.publishDraftsPartial': 'Published {published}; {failed} failed.',
'engine.packages.detail.publishDraftsRolledBack': 'Nothing was published — the batch rolled back (all-or-nothing): {cause}',
'engine.packages.detail.publishDraftsOk': 'App published — all drafts are now live.',
'engine.packages.detail.reverted': 'Reverted to last published state.',
'engine.packages.detail.discardDraftsPartial': 'Discarded {discarded}; {failed} failed.',
'engine.packages.detail.discardDraftsOk': 'All pending changes discarded — back to the published version.',
'engine.packages.detail.deleteConfirm': 'Delete "{name}" and all its data?\n\nThis removes every object, view, dashboard and app in the package AND drops the database tables those objects created. This cannot be undone.',
'engine.packages.detail.deleteFailed': 'Delete failed',
'engine.packages.detail.disabled': 'Package disabled.',
'engine.packages.detail.enabled': 'Package enabled.',
'engine.packages.detail.exported': 'Package exported.',
'engine.packages.detail.duplicate': 'Duplicate',
'engine.packages.detail.duplicating': 'Duplicating…',
'engine.packages.detail.duplicatePrompt': 'New package id for the duplicate (a fresh writable base):',
'engine.packages.detail.duplicated': 'Package duplicated into a new base.',
'engine.packages.detail.adoptOrphans': 'Adopt loose items',
'engine.packages.detail.adopting': 'Adopting…',
'engine.packages.detail.adoptConfirm': 'Move all package-less (loose) metadata in this environment INTO "{name}"? This rebinds orphaned items to this base.',
'engine.packages.detail.adopted': 'Loose items adopted into this base.',
'engine.packages.detail.deleteKeepData': 'Delete the DATA too?\n\nOK = also drop all records (destructive). Cancel = keep records, delete only the structure.',
'engine.quickfind.placeholder': "Find metadata types or items… (try 'view', 'account')",
'engine.quickfind.empty': 'Type to search across all metadata types.',
'engine.quickfind.title': 'Quick Find',
'engine.quickfind.indexing': 'Indexing items across',
'engine.quickfind.noMatches': 'No matches.',
'engine.breadcrumb.allTypes': 'All Metadata Types',
// Permission matrix
'perm.action.create': 'Create',
'perm.action.read': 'Read',
'perm.action.edit': 'Edit',
'perm.action.delete': 'Delete',
'perm.action.transfer': 'Transfer ownership',
'perm.action.restore': 'Restore deleted records (reserved — deletes are hard today)',
'perm.action.purge': 'Hard delete (purge)',
'perm.action.viewAll': 'View All Records (bypass sharing)',
'perm.action.modifyAll': 'Modify All Records (bypass sharing)',
'perm.col.object': 'Object',
'perm.col.bulk': 'Bulk',
'perm.posture.private': 'Private',
'perm.posture.private.tip': 'Secure-by-default object (access.default = private): a permission set’s “*” wildcard grant does NOT cover it. Access needs an explicit grant on this object (or View/Modify All Records). Grants you edit here apply normally.',
'perm.owd.tip': 'Org-wide default (sharingModel): the record-level visibility baseline for internal users, applied before positions and sharing rules. Object CRUD here gates the operation; the OWD decides which records it reaches (own vs org-wide).',
'perm.owd.ext.tip': 'External OWD (externalSharingModel): the baseline for portal / partner principals — never wider than the internal model (ADR-0090 D11).',
'perm.owd.defaultPrivate': 'Private (default)',
'perm.owd.editLink': 'Edit in the package’s Record Sharing Baseline (OWD) overview',
'perm.owd.private': 'Private',
'perm.owd.public_read': 'Public read',
'perm.owd.public_read_write': 'Public read/write',
'perm.owd.controlled_by_parent': 'By parent',
'perm.bulk.read': 'R',
'perm.bulk.crud': 'CRUD',
'perm.bulk.all': 'All',
'perm.bulk.none': 'None',
'perm.filter.placeholder': 'Filter objects…',
'perm.filter.onlyGranted': 'Only granted',
'perm.filter.empty': 'No objects match the filter.',
'perm.field.name': 'Name',
'perm.field.label': 'Label',
'perm.basics.editHint': 'Edit name / label',
'perm.cap.none': 'No system capabilities',
'perm.cap.add': 'Add capability',
'perm.badge.platform': 'Platform',
'perm.badge.package': 'Package',
'perm.badge.custom': 'Custom',
'perm.badge.default': 'Default for new users',
'perm.field.loading': 'Loading fields…',
'perm.field.empty': 'No fields registered for this object.',
'perm.field.filter': 'Filter fields…',
'perm.field.filterEmpty': 'No fields match the filter.',
'perm.field.bulk.readable': 'Read all',
'perm.field.bulk.writable': 'Write all',
'perm.field.bulk.clear': 'Clear',
'perm.field.col.name': 'Field',
'perm.field.read': 'Read',
'perm.field.edit': 'Edit',
'perm.stat.objects': 'Objects granted',
'perm.stat.fields': 'Fields granted',
'perm.stat.objectsGranted': 'Objects granted',
'perm.stat.fieldOverrides': 'Field overrides',
'perm.stat.objectsSuffix': 'objects',
'perm.subtitle.set': 'Permission set',
'perm.field.systemCapabilities': 'System Capabilities',
'perm.field.systemCapabilitiesHelp':
'Platform / org capabilities granted to holders of this set (e.g. Studio access, user management). Designed here; Setup shows them read-only.',
'perm.rls.title': 'Row-Level Security',
'perm.rls.help': 'Row filters (CEL predicates) scoping which records holders may read/change.',
'perm.rls.name': 'Policy name',
'perm.rls.object': 'Object (* = all)',
'perm.rls.enabled': 'Enabled',
'perm.rls.using': 'USING (read filter)',
'perm.rls.check': 'CHECK (write filter)',
'perm.rls.checkPlaceholder': 'optional — defaults to USING',
'perm.rls.empty': 'No row-level policies.',
'perm.rls.add': 'Add policy',
// CEL authoring safety for RLS predicates (objectui#2413).
'perm.cel.valid': 'Valid CEL',
'perm.cel.suggestions': 'Field and scope suggestions',
'perm.cel.type': 'Result type:',
'perm.cel.type.number': 'Number',
'perm.cel.type.text': 'Text',
'perm.cel.type.boolean': 'Boolean',
'perm.cel.type.date': 'Date',
'perm.cel.type.unknown': 'Unknown',
'perm.cel.type.unknownHint':
'the engine cannot prove a single type. Wrap operands in double() / int() / string() to pin it — only proven-Number formulas are offered as dataset measures.',
'perm.cel.saveBlocked': 'Fix the CEL syntax errors before saving.',
'perm.cel.test.title': 'Test policy',
'perm.cel.test.help':
'Dry-run this predicate against a sample record and acting user — the same CEL engine the server uses — to see whether the row is allowed or denied before you save.',
'perm.cel.test.run': 'Test',
'perm.cel.test.clause': 'Clause',
'perm.cel.test.noPredicate': 'Add a USING or CHECK predicate first, then test it.',
'perm.cel.test.record': 'Sample record',
'perm.cel.test.user': 'Acting user',
'perm.cel.test.allow': 'Allowed',
'perm.cel.test.allowHint': 'The record is in scope — the holder may access it.',
'perm.cel.test.deny': 'Denied',
'perm.cel.test.denyHint': 'The record is out of scope — it is excluded for the holder.',
'perm.cel.test.nonBool': 'Non-boolean result',
'perm.cel.test.nonBoolHint': 'a row filter should evaluate to true or false.',
'perm.cel.test.error': 'Evaluation error',
'perm.cel.test.unavailable': 'CEL engine unavailable',
'perm.cel.test.unavailableHint': 'The in-browser CEL engine could not be loaded.',
'perm.tabs.title': 'Tab Visibility',
'perm.tabs.help': 'Per-tab visibility for holders of this set.',
'perm.tabs.empty': 'No tab overrides.',
'perm.tabs.add': 'Add tab',
'perm.tabs.vis.visible': 'Visible',
'perm.tabs.vis.hidden': 'Hidden',
'perm.tabs.vis.default_on': 'Default on',
'perm.tabs.vis.default_off': 'Default off',
'perm.admin.title': 'Delegated Admin Scope',
'perm.admin.help':
'Lets holders administer a business-unit subtree (assign users, manage bindings) without full admin.',
'perm.admin.businessUnit': 'Business unit',
'perm.admin.includeSubtree': 'Include subtree',
'perm.admin.manageAssignments': 'Manage assignments',
'perm.admin.manageBindings': 'Manage bindings',
'perm.admin.authorEnvironmentSets': 'Author env sets',
'perm.admin.assignableSets': 'Assignable permission sets',
'perm.admin.noSets': 'No permission sets loaded.',
'perm.loading': 'Loading permission set {name}…',
'perm.readOnly': 'Read-only (OS_METADATA_WRITABLE not enabled)',
// Designer wrapper
'designer.unsavedChanges': 'Unsaved changes',
'designer.editingOverlay': 'Editing overlay',
'designer.codeBaseline': 'Code baseline',
// Object form-designer canvas
'designer.canvas.nameToStart': 'Name the object in the Properties panel to start designing fields.',
'designer.canvas.noFields': 'No fields yet',
'designer.canvas.noFieldsHint':
'Add a field to start designing the form. Click any field to edit its properties on the right.',
'designer.canvas.addField': 'Add field',
'designer.canvas.addSection': 'Add section',
'designer.canvas.addFieldToSection': 'Add field to this section',
'designer.canvas.searchFieldType': 'Search field type…',
'designer.canvas.noMatchingTypes': 'No matching types.',
'designer.canvas.ungrouped': 'Ungrouped',
'designer.canvas.emptySection': 'Empty section',
'designer.canvas.dropHint': 'Drag fields here, or add one below',
'designer.canvas.dropToAssign': 'drop to assign',
'designer.canvas.collapseAll': 'Collapse all',
'designer.canvas.expandAll': 'Expand all',
'designer.canvas.fields': 'fields',
'designer.canvas.required': 'required',