@opencode/ui 0.0.0-dev-19411 → 0.0.0-dev-19414
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/i18n/en.d.ts +5 -0
- package/package.json +1 -1
- package/src/i18n/en.ts +5 -0
package/dist/i18n/en.d.ts
CHANGED
|
@@ -94,6 +94,11 @@ declare const source: {
|
|
|
94
94
|
"ui.messagePart.review.title": string;
|
|
95
95
|
"ui.messagePart.questions.dismissed": string;
|
|
96
96
|
"ui.messagePart.compaction": string;
|
|
97
|
+
"ui.messagePart.compaction.started": string;
|
|
98
|
+
"ui.messagePart.compaction.running": string;
|
|
99
|
+
"ui.messagePart.compaction.failed": string;
|
|
100
|
+
"ui.messagePart.compaction.cancelled": string;
|
|
101
|
+
"ui.messagePart.compaction.interrupted": string;
|
|
97
102
|
"ui.messagePart.providerCompaction": string;
|
|
98
103
|
"ui.messagePart.compaction.usage": string;
|
|
99
104
|
"ui.messagePart.context.details": string;
|
package/package.json
CHANGED
package/src/i18n/en.ts
CHANGED
|
@@ -104,6 +104,11 @@ const source = {
|
|
|
104
104
|
"ui.messagePart.review.title": "Review your answers",
|
|
105
105
|
"ui.messagePart.questions.dismissed": "Questions dismissed",
|
|
106
106
|
"ui.messagePart.compaction": "Session compacted",
|
|
107
|
+
"ui.messagePart.compaction.started": "Session compaction started",
|
|
108
|
+
"ui.messagePart.compaction.running": "Compacting",
|
|
109
|
+
"ui.messagePart.compaction.failed": "Session compaction failed",
|
|
110
|
+
"ui.messagePart.compaction.cancelled": "Session compaction cancelled",
|
|
111
|
+
"ui.messagePart.compaction.interrupted": "Session compaction interrupted",
|
|
107
112
|
"ui.messagePart.providerCompaction": "Session compacted by provider",
|
|
108
113
|
"ui.messagePart.compaction.usage": "{{input}} in · {{output}} out",
|
|
109
114
|
"ui.messagePart.context.details": "Details",
|