@pega/cosmos-react-core 9.0.0-build.3.1 → 9.0.0-build.3.2

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.
@@ -93,6 +93,8 @@ declare const _default: {
93
93
  reset: string;
94
94
  refresh: string;
95
95
  copy: string;
96
+ explain: string;
97
+ generate: string;
96
98
  view_all: string;
97
99
  view_less: string;
98
100
  show_more: string;
@@ -331,8 +333,22 @@ declare const _default: {
331
333
  };
332
334
  attach_files: string;
333
335
  attach_review: string;
334
- files_uploaded: string;
335
- files_upload_failed: string;
336
+ files_uploaded: {
337
+ zero: string;
338
+ one: string;
339
+ two: string;
340
+ few: string;
341
+ many: string;
342
+ other: string;
343
+ };
344
+ files_upload_failed: {
345
+ zero: string;
346
+ one: string;
347
+ two: string;
348
+ few: string;
349
+ many: string;
350
+ other: string;
351
+ };
336
352
  download_all: string;
337
353
  my_current_location_button_a11y: string;
338
354
  location_input_placeholder: string;
@@ -1483,6 +1499,14 @@ declare const _default: {
1483
1499
  agent_tracer_data_from_all_sources: string;
1484
1500
  agent_tracer_complete_data_source: string;
1485
1501
  agent_tracer_conversation_trace: string;
1502
+ generating_explanation: string;
1503
+ explanation_generated: string;
1504
+ clear_explanation: string;
1505
+ describe_expression: string;
1506
+ generating_expression: string;
1507
+ generated_expression: string;
1508
+ expression_generated: string;
1509
+ library: string;
1486
1510
  };
1487
1511
  export default _default;
1488
1512
  //# sourceMappingURL=default.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAw9CE,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4KxB,6CAA6C;;;IAI7C,4CAA4C;;;;;;;;;;;;;;;;;;IAiC5C,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAzqDzC,wBA+sDE"}
1
+ {"version":3,"file":"default.d.ts","sourceRoot":"","sources":["../../src/i18n/default.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAw+CE,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA4KxB,6CAA6C;;;IAI7C,4CAA4C;;;;;;;;;;;;;;;;;;IAiC5C,uCAAuC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAzrDzC,wBAyuDE"}
@@ -98,6 +98,8 @@ export default {
98
98
  reset: 'Reset',
99
99
  refresh: 'Refresh',
100
100
  copy: 'Copy',
101
+ explain: 'Explain',
102
+ generate: 'Generate',
101
103
  /* Static verb noun */
102
104
  view_all: 'View all',
103
105
  view_less: 'View less',
@@ -364,8 +366,22 @@ export default {
364
366
  },
365
367
  attach_files: 'Attach files',
366
368
  attach_review: 'Attach or review',
367
- files_uploaded: '{0} files uploaded successfully',
368
- files_upload_failed: '{0} files failed to upload',
369
+ files_uploaded: {
370
+ zero: 'No files uploaded',
371
+ one: '{0} file uploaded successfully',
372
+ two: '{0} files uploaded successfully',
373
+ few: '{0} files uploaded successfully',
374
+ many: '{0} files uploaded successfully',
375
+ other: '{0} files uploaded successfully'
376
+ },
377
+ files_upload_failed: {
378
+ zero: 'No files failed to upload',
379
+ one: '{0} file failed to upload',
380
+ two: '{0} files failed to upload',
381
+ few: '{0} files failed to upload',
382
+ many: '{0} files failed to upload',
383
+ other: '{0} files failed to upload'
384
+ },
369
385
  download_all: 'Download all',
370
386
  /* core:Location */
371
387
  my_current_location_button_a11y: 'Use my current location',
@@ -1599,6 +1615,15 @@ export default {
1599
1615
  agent_tracer_pega_context: 'Pega context',
1600
1616
  agent_tracer_data_from_all_sources: 'Data sources',
1601
1617
  agent_tracer_complete_data_source: 'Complete data source',
1602
- agent_tracer_conversation_trace: 'Conversation trace'
1618
+ agent_tracer_conversation_trace: 'Conversation trace',
1619
+ /* Expression Builder */
1620
+ generating_explanation: 'Generating explanation',
1621
+ explanation_generated: 'Expression explanation generated',
1622
+ clear_explanation: 'Clear explanation',
1623
+ describe_expression: 'Describe Expression requirements',
1624
+ generating_expression: 'Generating expression',
1625
+ generated_expression: 'Generated Expression',
1626
+ expression_generated: 'Expression generated',
1627
+ library: 'Library'
1603
1628
  };
1604
1629
  //# sourceMappingURL=default.js.map