@mdwrk/mdwrkspace 1.4.21 → 1.4.28
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/README.md +40 -100
- package/dist/{en-ClsGDxfD.js → en-DRVntwzK.js} +33 -7
- package/dist/en-DwpN2EQB.js +8 -0
- package/dist/{en-BlzdGtuY.js → en-V6M4F5Xh.js} +15 -2
- package/dist/{en-DXOjLzHv.js → en-nwU2jiCC.js} +14 -2
- package/dist/es-B9CR-Zw0.js +69 -0
- package/dist/es-C9nICgui.js +91 -0
- package/dist/{es-B5IZFwGp.js → es-rC4KiML6.js} +45 -2
- package/dist/{esm-entry-DG1j7KYX.js → esm-entry-OBemaqoR.js} +25056 -19886
- package/dist/favicon.svg +1 -1
- package/dist/icons/icon-192.svg +1 -1
- package/dist/icons/icon-512.svg +1 -1
- package/dist/manifest.webmanifest +1 -1
- package/dist/mdwrkspace.css +1 -1
- package/dist/mdwrkspace.js +1 -1
- package/dist/sw.js +2 -2
- package/package.json +25 -18
- package/dist/en-KVDvZ7bE.js +0 -18
- package/dist/es-8RPBuG34.js +0 -29
- package/dist/es-Bzp0qZ24.js +0 -56
package/README.md
CHANGED
|
@@ -1,112 +1,52 @@
|
|
|
1
|
-
#
|
|
2
|
-
## Deterministic Markdown Rack System
|
|
1
|
+
# @mdwrk/mdwrkspace
|
|
3
2
|
|
|
4
|
-
|
|
3
|
+
**MdWrk client application package**
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="https://github.com/groupsum/markdown_workspace/blob/master/apps/client/README.md"><img alt="Hits" src="https://visitor-badge.laobi.icu/badge?page_id=groupsum.markdown_workspace.apps_client_README&left_text=hits" /></a>
|
|
7
|
+
<a href="https://www.npmjs.com/package/@mdwrk/mdwrkspace"><img alt="Downloads" src="https://img.shields.io/npm/dm/%40mdwrk%2Fmdwrkspace?label=downloads" /></a>
|
|
8
|
+
<a href="../../package.json"><img alt="Node" src="https://img.shields.io/badge/node-20.x%20%7C%2021.x%20%7C%2022.x-339933?logo=node.js&logoColor=white" /></a>
|
|
9
|
+
<a href="../../LICENSE"><img alt="License: Apache-2.0" src="https://img.shields.io/badge/license-Apache--2.0-blue.svg" /></a>
|
|
10
|
+
</p>
|
|
7
11
|
|
|
8
|
-
|
|
12
|
+
`@mdwrk/mdwrkspace` packages the MdWrk browser client: markdown editing, previewing, extension hosting, theme switching, responsive shell layout, and retained-version PWA delivery.
|
|
9
13
|
|
|
10
|
-
|
|
14
|
+
## Why
|
|
15
|
+
Consumers evaluating the client need the product story first, then the shell contract and extension/runtime context. This README keeps the package approachable while still linking to the deeper architecture docs.
|
|
11
16
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
| |_______________________________________________________________|
|
|
18
|
-
| ACT | [E] EXPLORER | [S] SPLIT_STAGE (EDITOR / PREVIEW) |
|
|
19
|
-
| ION | | |
|
|
20
|
-
| | (Registry Tree) | (Execution Core) | (Render Output) |
|
|
21
|
-
| RAI | | | |
|
|
22
|
-
| L | | | |
|
|
23
|
-
|_____|_________________|_____________________|_______________________|
|
|
24
|
-
| [F] STATUS_BAR (Telemetry, Storage Health, PWA Version) |
|
|
25
|
-
|_____________________________________________________________________|
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
---
|
|
29
|
-
|
|
30
|
-
### 2. Component System Architecture
|
|
31
|
-
|
|
32
|
-
#### [H] App Header (The Control Deck)
|
|
33
|
-
The primary system navigation and identity layer.
|
|
34
|
-
- **Context Tabs**: Zero-navigation switching between active buffers using a physical tab-strip metaphor.
|
|
35
|
-
- **Brand/Project**: Quick context switching via the Project Selector.
|
|
36
|
-
- **System Controls**: Global UI density scaling and direct access to systemic settings.
|
|
37
|
-
|
|
38
|
-
#### [A] Action Rail (Atomic I/O)
|
|
39
|
-
The high-frequency vertical strip designed for "one-click" deterministic operations.
|
|
40
|
-
- **Mode Toggle**: Switches between Workspace (Manifold) and Git/Sync views.
|
|
41
|
-
- **Structure Controls**: Collapse/Expand the Registry (Explorer).
|
|
42
|
-
- **Physical Actions**: Instant File/Folder creation and data persistence triggers.
|
|
43
|
-
|
|
44
|
-
#### [W] Work Pane (The Manifold)
|
|
45
|
-
The main structural container that orchestrates the relationship between the file system and the execution stage.
|
|
46
|
-
- **Heavy Divide**: Manages the 2px-4px "gap" or contact points between the Sidebar and the Stage.
|
|
47
|
-
- **Transition Logic**: Animates the sliding "Plates" when the explorer is toggled.
|
|
48
|
-
|
|
49
|
-
#### [E] Explorer (The Registry)
|
|
50
|
-
A dense, scan-optimized hierarchical tree structure for navigating the IndexedDB node-set.
|
|
51
|
-
- **State Awareness**: Highlights the active document and handles drag-and-drop structural reorganization.
|
|
52
|
-
- **Materiality**: Uses high-contrast backgrounds to differentiate from the editing surface.
|
|
53
|
-
|
|
54
|
-
#### [S] Split Stage (The Execution Core)
|
|
55
|
-
The primary functional surface for data entry and visualization.
|
|
56
|
-
- **Deterministic Split**: A resizable divide between raw Markdown input and the GFM rendered output.
|
|
57
|
-
- **GFM Engine**: Full support for tables, task lists, and syntax-highlighted code blocks.
|
|
58
|
-
- **Telemetry**: Sends real-time LN/COL coordinates to the Status Bar.
|
|
17
|
+
## What
|
|
18
|
+
- A workspace shell with header, action rail, explorer/sidebar, stage, and footer regions.
|
|
19
|
+
- Built-in authoring, preview, theme, language, extension, and Git-adjacent surfaces.
|
|
20
|
+
- A single viewport contract shared across all themes, with theme-specific styling layered on top.
|
|
21
|
+
- A package-level surface that still cross-links to the repo docs for architecture detail.
|
|
59
22
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
- **Caret Tracking**: Precision cursor positioning.
|
|
63
|
-
- **Persistence Health**: Explicit visibility of IndexedDB stability (Synced/Dirty states).
|
|
64
|
-
- **PWA Awareness**: Online/Offline status and version telemetry.
|
|
23
|
+
## Installation
|
|
24
|
+
Node.js 20.x through 22.x, matching the workspace engine contract in the root package manifest.
|
|
65
25
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
- **Offline-First**: Powered by a service worker and IndexedDB primary storage.
|
|
71
|
-
- **Deterministic UI**: State is persisted locally so the app resumes exactly where you left off.
|
|
72
|
-
- **Milled Zinc Aesthetic**: Utilizing high-contrast borders and radial microgrids to simulate physical materiality.
|
|
73
|
-
- **Optical Type**: Typefaces are selected and scaled for maximum legibility in high-density, low-chrome environments.
|
|
74
|
-
|
|
75
|
-
> "Structure is the only truth in a digital layout."
|
|
76
|
-
|
|
77
|
-
---
|
|
78
|
-
|
|
79
|
-
### 4. Viewport + Aspect Ratio Matrix
|
|
26
|
+
```bash
|
|
27
|
+
npm install @mdwrk/mdwrkspace
|
|
28
|
+
```
|
|
80
29
|
|
|
81
|
-
|
|
30
|
+
## Usage
|
|
31
|
+
Use the published package when you want the client surface itself, or run it from the workspace while iterating on the repo.
|
|
82
32
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
33
|
+
```bash
|
|
34
|
+
npm install
|
|
35
|
+
npm run dev:client
|
|
36
|
+
npm run build -w apps/client
|
|
37
|
+
npm run screenshots:matrix -w apps/client
|
|
38
|
+
```
|
|
89
39
|
|
|
90
|
-
|
|
91
|
-
- **XXS**: `max-width: 359px`
|
|
92
|
-
- **XS**: `min-width: 360px` and `max-width: 479px`
|
|
93
|
-
- **SM**: `min-width: 480px` and `max-width: 599px`
|
|
94
|
-
- **MD**: `min-width: 600px` and `max-width: 767px`
|
|
95
|
-
- **LG**: `min-width: 768px` and `max-width: 1023px`
|
|
96
|
-
- **XL**: `min-width: 1024px` and `max-width: 1439px`
|
|
97
|
-
- **XXL**: `min-width: 1440px` and `max-width: 1919px`
|
|
98
|
-
- **XXXL**: `min-width: 1920px`
|
|
99
|
-
- **XX-short height**: `max-height: 359px`
|
|
100
|
-
- **X-short height**: `min-height: 360px` and `max-height: 479px`
|
|
101
|
-
- **Short height**: `min-height: 480px` and `max-height: 599px`
|
|
102
|
-
- **Compact height**: `min-height: 600px` and `max-height: 719px`
|
|
103
|
-
- **Medium height**: `min-height: 720px` and `max-height: 899px`
|
|
104
|
-
- **Tall height**: `min-height: 900px` and `max-height: 1079px`
|
|
105
|
-
- **X-tall height**: `min-height: 1080px` and `max-height: 1279px`
|
|
106
|
-
- **Ultra-tall height**: `min-height: 1280px`
|
|
40
|
+
The canonical viewport contract lives in `client/public/css/base/viewports.css`, and themes are expected to preserve that structural contract while restyling the bands.
|
|
107
41
|
|
|
108
|
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
42
|
+
## How
|
|
43
|
+
- Run `npm run dev:client` for local client iteration.
|
|
44
|
+
- Run `npm run screenshots:matrix -w apps/client` when you need full theme and viewport coverage artifacts.
|
|
45
|
+
- Use the extension family packages to understand the bundled runtime and first-party panels.
|
|
111
46
|
|
|
112
|
-
|
|
47
|
+
## Related
|
|
48
|
+
- [Root README](../../README.md) - repo overview
|
|
49
|
+
- [Desktop shell](../desktop/README.md) - native wrapper for this client
|
|
50
|
+
- [Extensions family](../../packages/extensions/README.md) - runtime and bundled extensions
|
|
51
|
+
- [Theme contract](../../packages/contracts/theme-contract/README.md) - theme compatibility surface
|
|
52
|
+
- [Docs](../../docs/README.md) - deeper architecture and conformance
|
|
@@ -2,7 +2,7 @@ const e = {
|
|
|
2
2
|
locale: "en",
|
|
3
3
|
messages: {
|
|
4
4
|
"manifest.displayName": "Gemini Agent",
|
|
5
|
-
"manifest.description": "Bundled Gemini assistant for
|
|
5
|
+
"manifest.description": "Bundled Gemini assistant for conversation-driven markdown drafting, preview, and safe writeback.",
|
|
6
6
|
"commands.open.title": "Open Gemini Agent",
|
|
7
7
|
"commands.open.description": "Open the Gemini Agent operator view.",
|
|
8
8
|
"commands.summarize.title": "Summarize Current File",
|
|
@@ -14,7 +14,7 @@ const e = {
|
|
|
14
14
|
"commands.replaceDocument.title": "Replace Document With Gemini Draft",
|
|
15
15
|
"commands.replaceDocument.description": "Replace the current document with the latest Gemini draft when writeback is enabled.",
|
|
16
16
|
"view.title": "Gemini Agent",
|
|
17
|
-
"view.description": "Run Gemini
|
|
17
|
+
"view.description": "Run Gemini conversations against the active markdown document and manage safe draft writeback.",
|
|
18
18
|
"rail.title": "Gemini",
|
|
19
19
|
"settings.title": "Gemini Agent settings",
|
|
20
20
|
"settings.description": "Configure provider connectivity, automatic context attachment, and safe writeback behavior for the Gemini extension.",
|
|
@@ -51,18 +51,18 @@ const e = {
|
|
|
51
51
|
"status.writebackDisabled": "Writeback disabled",
|
|
52
52
|
"status.writebackEnabled": "Writeback enabled",
|
|
53
53
|
"status.idle": "Ready",
|
|
54
|
-
"status.running": "Running Gemini request
|
|
54
|
+
"status.running": "Running Gemini request...",
|
|
55
55
|
"status.noDocument": "No active markdown document",
|
|
56
56
|
"status.noSelection": "No active selection",
|
|
57
57
|
"status.noDraft": "No Gemini draft available",
|
|
58
|
-
"status.promptPlaceholder": "Ask Gemini to summarize, critique, transform, or extract structure from the active markdown
|
|
58
|
+
"status.promptPlaceholder": "Ask Gemini to summarize, critique, transform, or extract structure from the active markdown...",
|
|
59
59
|
"panel.title": "Gemini Agent",
|
|
60
|
-
"panel.subtitle": "
|
|
60
|
+
"panel.subtitle": "Conversation-first drafting with Markdown preview, contextual prompts, and safe explicit writeback.",
|
|
61
61
|
"panel.close": "Close",
|
|
62
62
|
"panel.refresh": "Refresh context",
|
|
63
|
-
"panel.runPrompt": "
|
|
63
|
+
"panel.runPrompt": "Send",
|
|
64
64
|
"panel.summarize": "Summarize file",
|
|
65
|
-
"panel.rewriteSelection": "
|
|
65
|
+
"panel.rewriteSelection": "Rewrite selection",
|
|
66
66
|
"panel.applySelection": "Apply draft to selection",
|
|
67
67
|
"panel.replaceDocument": "Replace document with draft",
|
|
68
68
|
"panel.clearDraft": "Clear draft",
|
|
@@ -72,13 +72,39 @@ const e = {
|
|
|
72
72
|
"panel.context.file": "File",
|
|
73
73
|
"panel.context.selection": "Selection",
|
|
74
74
|
"panel.context.none": "None",
|
|
75
|
+
"panel.kicker": "Gemini agent",
|
|
75
76
|
"panel.response": "Response",
|
|
76
77
|
"panel.draft": "Draft",
|
|
77
78
|
"panel.settings": "Effective settings",
|
|
78
79
|
"panel.prompt": "Prompt",
|
|
80
|
+
"panel.threads": "Conversations",
|
|
81
|
+
"panel.newThread": "New conversation",
|
|
82
|
+
"panel.threadEmpty": "Start a conversation to create the first Gemini thread.",
|
|
83
|
+
"panel.threadCount": "messages",
|
|
84
|
+
"panel.conversation": "Conversation",
|
|
85
|
+
"panel.preview": "Markdown preview",
|
|
86
|
+
"panel.previewSource": "Preview source",
|
|
87
|
+
"panel.previewDraft": "Draft preview",
|
|
88
|
+
"panel.previewResponse": "Response preview",
|
|
89
|
+
"panel.previewDocument": "Document preview",
|
|
90
|
+
"panel.previewEmpty": "Run Gemini or draft content to preview rendered Markdown here.",
|
|
91
|
+
"panel.chatInput": "Conversation prompt",
|
|
92
|
+
"panel.chatTranscript": "Thread transcript",
|
|
93
|
+
"panel.composerHint": "Type @ to mention workspace files alongside the active file and selection context.",
|
|
94
|
+
"panel.mentionSuggestions": "Mention suggestions",
|
|
95
|
+
"panel.mentionedFiles": "Mentioned files",
|
|
79
96
|
"panel.lastError": "Last error",
|
|
80
97
|
"panel.lastInfo": "Status",
|
|
81
98
|
"panel.selectionCountSuffix": "chars selected",
|
|
99
|
+
"toolbar.label": "Gemini Agent toolbar",
|
|
100
|
+
"toolbar.toggleSidebar": "Toggle sidebar",
|
|
101
|
+
"toolbar.singlePane": "Single pane",
|
|
102
|
+
"toolbar.splitScreen": "Split screen",
|
|
103
|
+
"toolbar.close": "Close Gemini Agent",
|
|
104
|
+
"toolbar.resizePanes": "Resize Gemini Agent panes",
|
|
105
|
+
"toolbar.focusConversation": "Conversation only",
|
|
106
|
+
"toolbar.focusPreview": "Preview only",
|
|
107
|
+
"toolbar.focusDraft": "Draft only",
|
|
82
108
|
"diagnostics.ready": "Gemini Agent activated successfully.",
|
|
83
109
|
"diagnostics.missingConfiguration": "Gemini request blocked because required provider configuration is missing.",
|
|
84
110
|
"diagnostics.noDocument": "Gemini request blocked because there is no active markdown document.",
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import { e as t } from "./esm-entry-OBemaqoR.js";
|
|
2
|
+
const s = {
|
|
2
3
|
locale: "en",
|
|
3
4
|
messages: {
|
|
5
|
+
...Object.fromEntries(Object.values(t).map((e) => [e.key, e.defaultMessage])),
|
|
4
6
|
"manifest.displayName": "Extension Manager",
|
|
5
7
|
"manifest.description": "Bundled operator console for browsing, enabling, disabling, diagnosing, and configuring extensions.",
|
|
6
8
|
"commands.open.title": "Open Extension Manager",
|
|
@@ -45,9 +47,20 @@ const e = {
|
|
|
45
47
|
"view.card.health.lastError": "Last error",
|
|
46
48
|
"settings.form.state.enabled": "Enabled",
|
|
47
49
|
"settings.form.state.disabled": "Disabled",
|
|
50
|
+
"settings.shortcut.kicker": "Extension manager",
|
|
51
|
+
"settings.shortcut.title": "Extension Manager",
|
|
52
|
+
"settings.shortcut.description": "Open the pane workspace to inspect runtime inventory, compatibility, installed catalog entries, and diagnostics.",
|
|
53
|
+
"settings.stats.extensions": "EXTENSIONS",
|
|
54
|
+
"settings.stats.active": "ACTIVE",
|
|
55
|
+
"settings.stats.installed": "INSTALLED",
|
|
56
|
+
"settings.stats.catalog": "CATALOG",
|
|
57
|
+
"settings.chips.indexeddb": "INDEXEDDB",
|
|
58
|
+
"settings.chips.paneOnly": "Pane only",
|
|
59
|
+
"settings.chips.englishFallback": "English fallback",
|
|
60
|
+
"settings.actions.openManager": "Open manager",
|
|
48
61
|
"diagnostics.ready": "Extension Manager activated successfully."
|
|
49
62
|
}
|
|
50
63
|
};
|
|
51
64
|
export {
|
|
52
|
-
|
|
65
|
+
s as extensionManagerEnCatalog
|
|
53
66
|
};
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { T as e } from "./esm-entry-
|
|
1
|
+
import { T as e, t as s } from "./esm-entry-OBemaqoR.js";
|
|
2
2
|
const a = {
|
|
3
3
|
locale: "en",
|
|
4
4
|
messages: {
|
|
5
|
+
...Object.fromEntries(Object.values(s).map((t) => [t.key, t.defaultMessage])),
|
|
5
6
|
[`${e}.manifest.displayName`]: "Theme Studio",
|
|
6
7
|
[`${e}.manifest.description`]: "Bundled theme authoring extension for inspecting tokens, previewing renderer/editor bridges, and exporting portable theme artifacts.",
|
|
7
8
|
[`${e}.commands.open.title`]: "Open Theme Studio",
|
|
@@ -21,7 +22,18 @@ const a = {
|
|
|
21
22
|
[`${e}.status.busy`]: "Working…",
|
|
22
23
|
[`${e}.status.applied`]: "Draft applied",
|
|
23
24
|
[`${e}.status.reverted`]: "Draft reverted",
|
|
24
|
-
[`${e}.status.exported`]: "Exports generated"
|
|
25
|
+
[`${e}.status.exported`]: "Exports generated",
|
|
26
|
+
[`${e}.settings.shortcut.kicker`]: "Theme Studio",
|
|
27
|
+
[`${e}.settings.shortcut.title`]: "Theme Studio",
|
|
28
|
+
[`${e}.settings.shortcut.description`]: "Open the pane workspace to inspect token bridges, preview renderer/editor output, and export portable theme artifacts.",
|
|
29
|
+
[`${e}.settings.stats.themeId`]: "Theme ID",
|
|
30
|
+
[`${e}.settings.stats.tokens`]: "TOKENS",
|
|
31
|
+
[`${e}.settings.stats.relationships`]: "RELATIONSHIPS",
|
|
32
|
+
[`${e}.settings.stats.status`]: "STATUS",
|
|
33
|
+
[`${e}.settings.chips.paneOnly`]: "Pane only",
|
|
34
|
+
[`${e}.settings.chips.splitSingle`]: "SPLIT + SINGLE",
|
|
35
|
+
[`${e}.settings.chips.englishFallback`]: "English fallback",
|
|
36
|
+
[`${e}.settings.actions.openStudio`]: "Open studio"
|
|
25
37
|
}
|
|
26
38
|
};
|
|
27
39
|
export {
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { T as e, t as r } from "./esm-entry-OBemaqoR.js";
|
|
2
|
+
const s = {
|
|
3
|
+
locale: "es",
|
|
4
|
+
messages: {
|
|
5
|
+
...Object.fromEntries(Object.values(r).map((t) => [t.key, t.defaultMessage])),
|
|
6
|
+
[`${e}.manifest.displayName`]: "Estudio de Temas",
|
|
7
|
+
[`${e}.manifest.description`]: "Extensión integrada para crear temas, inspeccionar tokens, previsualizar puentes de render/editor y exportar artefactos portátiles.",
|
|
8
|
+
[`${e}.commands.open.title`]: "Abrir Estudio de Temas",
|
|
9
|
+
[`${e}.commands.open.description`]: "Abre el espacio integrado de edición de temas.",
|
|
10
|
+
[`${e}.view.title`]: "Estudio de Temas",
|
|
11
|
+
[`${e}.view.description`]: "Inspecciona, previsualiza, aplica, revierte y exporta temas según el contrato formal de tokens y clases.",
|
|
12
|
+
[`${e}.rail.title`]: "Temas",
|
|
13
|
+
[`${e}.panel.header.title`]: "Estudio de Temas",
|
|
14
|
+
[`${e}.panel.header.subtitle`]: "Inspector de tokens, inspector de relaciones clase/token, vistas previas de render/editor y exportaciones portátiles.",
|
|
15
|
+
[`${e}.panel.actions.close`]: "Cerrar",
|
|
16
|
+
[`${e}.panel.actions.refresh`]: "Actualizar",
|
|
17
|
+
[`${e}.panel.actions.preview`]: "Previsualizar borrador",
|
|
18
|
+
[`${e}.panel.actions.apply`]: "Aplicar borrador",
|
|
19
|
+
[`${e}.panel.actions.revert`]: "Revertir borrador",
|
|
20
|
+
[`${e}.panel.actions.export`]: "Generar exportaciones",
|
|
21
|
+
[`${e}.status.ready`]: "Listo",
|
|
22
|
+
[`${e}.status.busy`]: "Procesando…",
|
|
23
|
+
[`${e}.status.applied`]: "Borrador aplicado",
|
|
24
|
+
[`${e}.status.reverted`]: "Borrador revertido",
|
|
25
|
+
[`${e}.status.exported`]: "Exportaciones generadas",
|
|
26
|
+
[`${e}.settings.shortcut.kicker`]: "Estudio de temas",
|
|
27
|
+
[`${e}.settings.shortcut.title`]: "Estudio de Temas",
|
|
28
|
+
[`${e}.settings.shortcut.description`]: "Abre el panel de trabajo para inspeccionar puentes de tokens, previsualizar la salida del render/editor y exportar artefactos de tema portátiles.",
|
|
29
|
+
[`${e}.settings.stats.themeId`]: "ID de tema",
|
|
30
|
+
[`${e}.settings.stats.tokens`]: "TOKENS",
|
|
31
|
+
[`${e}.settings.stats.relationships`]: "RELACIONES",
|
|
32
|
+
[`${e}.settings.stats.status`]: "ESTADO",
|
|
33
|
+
[`${e}.settings.chips.paneOnly`]: "Solo panel",
|
|
34
|
+
[`${e}.settings.chips.splitSingle`]: "DIVIDIDO + UNICO",
|
|
35
|
+
[`${e}.settings.chips.settingsContent`]: "Contenido de configuraci?n",
|
|
36
|
+
[`${e}.settings.chips.englishFallback`]: "Respaldo en ingl?s",
|
|
37
|
+
[`${e}.settings.actions.openStudio`]: "Abrir estudio",
|
|
38
|
+
[`${e}.panel.kicker`]: "Estudio de temas",
|
|
39
|
+
[`${e}.browser.chip`]: "Navegador de temas",
|
|
40
|
+
[`${e}.browser.filter.placeholder`]: "Filtrar tokens, selectores, exportaciones",
|
|
41
|
+
[`${e}.browser.filter.aria`]: "Filtrar navegador de temas",
|
|
42
|
+
[`${e}.browser.sections.metadata`]: "Metadatos",
|
|
43
|
+
[`${e}.browser.sections.tokens`]: "Tokens",
|
|
44
|
+
[`${e}.browser.sections.typography`]: "Tipografia",
|
|
45
|
+
[`${e}.browser.sections.relationships`]: "Relaciones",
|
|
46
|
+
[`${e}.browser.sections.exports`]: "Exportaciones",
|
|
47
|
+
[`${e}.browser.tokens.title`]: "Navegador de tokens",
|
|
48
|
+
[`${e}.browser.relationships.title`]: "Navegador de relaciones",
|
|
49
|
+
[`${e}.browser.tokens.empty`]: "Ningun token coincide.",
|
|
50
|
+
[`${e}.browser.relationships.empty`]: "Ninguna relacion coincide.",
|
|
51
|
+
[`${e}.panel.export.target.hostCss`]: "CSS del host",
|
|
52
|
+
[`${e}.panel.export.target.rendererCss`]: "CSS del renderizador",
|
|
53
|
+
[`${e}.panel.export.target.editorCss`]: "CSS del editor",
|
|
54
|
+
[`${e}.toolbar.label`]: "Barra de herramientas del Estudio de Temas",
|
|
55
|
+
[`${e}.toolbar.toggleSidebar`]: "Alternar barra lateral",
|
|
56
|
+
[`${e}.toolbar.singlePane`]: "Panel unico",
|
|
57
|
+
[`${e}.toolbar.splitScreen`]: "Pantalla dividida",
|
|
58
|
+
[`${e}.toolbar.refresh`]: "Actualizar datos del tema",
|
|
59
|
+
[`${e}.toolbar.import`]: "Importar paquete de tema",
|
|
60
|
+
[`${e}.toolbar.preview`]: "Previsualizar borrador de tema",
|
|
61
|
+
[`${e}.toolbar.apply`]: "Aplicar borrador de tema",
|
|
62
|
+
[`${e}.toolbar.revert`]: "Revertir borrador de tema",
|
|
63
|
+
[`${e}.toolbar.close`]: "Cerrar estudio",
|
|
64
|
+
[`${e}.toolbar.resizePanes`]: "Redimensionar paneles del Estudio de Temas"
|
|
65
|
+
}
|
|
66
|
+
};
|
|
67
|
+
export {
|
|
68
|
+
s as themeStudioEsCatalog
|
|
69
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
locale: "es",
|
|
3
|
+
messages: {
|
|
4
|
+
"manifest.displayName": "Agente Gemini",
|
|
5
|
+
"manifest.description": "Asistente Gemini integrado para conversaciones, redaccion en Markdown, vista previa y escritura segura.",
|
|
6
|
+
"commands.open.title": "Abrir Agente Gemini",
|
|
7
|
+
"commands.open.description": "Abre la vista operativa del Agente Gemini.",
|
|
8
|
+
"commands.summarize.title": "Resumir archivo actual",
|
|
9
|
+
"commands.summarize.description": "Resume el documento markdown activo en la vista del Agente Gemini.",
|
|
10
|
+
"commands.rewrite.title": "Redactar reescritura de la seleccion",
|
|
11
|
+
"commands.rewrite.description": "Genera un borrador de reescritura para la seleccion actual en la vista del Agente Gemini.",
|
|
12
|
+
"commands.applySelection.title": "Aplicar borrador Gemini a la seleccion",
|
|
13
|
+
"commands.applySelection.description": "Aplica el borrador actual de Gemini a la seleccion activa cuando la escritura esta habilitada.",
|
|
14
|
+
"commands.replaceDocument.title": "Reemplazar documento con borrador Gemini",
|
|
15
|
+
"commands.replaceDocument.description": "Reemplaza el documento actual con el ultimo borrador de Gemini cuando la escritura esta habilitada.",
|
|
16
|
+
"view.title": "Agente Gemini",
|
|
17
|
+
"view.description": "Ejecuta conversaciones Gemini sobre el documento markdown activo y gestiona la escritura segura de borradores.",
|
|
18
|
+
"rail.title": "Gemini",
|
|
19
|
+
"settings.title": "Configuracion del Agente Gemini",
|
|
20
|
+
"settings.description": "Configura la conectividad del proveedor, el contexto automatico y el comportamiento de escritura segura de la extension Gemini.",
|
|
21
|
+
"settings.sections.general.title": "Proveedor",
|
|
22
|
+
"settings.sections.general.description": "Configura el endpoint de Gemini, el modelo, la autenticacion y el comportamiento de la solicitud.",
|
|
23
|
+
"settings.sections.context.title": "Contexto",
|
|
24
|
+
"settings.sections.context.description": "Controla como se adjuntan el documento activo y la seleccion actual a los prompts ad hoc.",
|
|
25
|
+
"settings.sections.writeback.title": "Escritura",
|
|
26
|
+
"settings.sections.writeback.description": "Controla si los borradores de Gemini pueden aplicarse explicitamente de nuevo en el editor.",
|
|
27
|
+
"status.configured": "Configurado",
|
|
28
|
+
"status.missingConfiguration": "Falta configuracion",
|
|
29
|
+
"status.writebackDisabled": "Escritura deshabilitada",
|
|
30
|
+
"status.writebackEnabled": "Escritura habilitada",
|
|
31
|
+
"status.idle": "Listo",
|
|
32
|
+
"status.running": "Ejecutando solicitud Gemini...",
|
|
33
|
+
"status.noDocument": "No hay un documento markdown activo",
|
|
34
|
+
"status.noSelection": "No hay una seleccion activa",
|
|
35
|
+
"status.noDraft": "No hay un borrador Gemini disponible",
|
|
36
|
+
"status.promptPlaceholder": "Pide a Gemini que resuma, critique, transforme o extraiga estructura del markdown activo...",
|
|
37
|
+
"panel.title": "Agente Gemini",
|
|
38
|
+
"panel.subtitle": "Redaccion orientada a conversaciones con vista previa Markdown, prompts contextuales y escritura explicita segura.",
|
|
39
|
+
"panel.close": "Cerrar",
|
|
40
|
+
"panel.refresh": "Actualizar contexto",
|
|
41
|
+
"panel.runPrompt": "Enviar",
|
|
42
|
+
"panel.summarize": "Resumir archivo",
|
|
43
|
+
"panel.rewriteSelection": "Reescribir seleccion",
|
|
44
|
+
"panel.applySelection": "Aplicar borrador a la seleccion",
|
|
45
|
+
"panel.replaceDocument": "Reemplazar documento con borrador",
|
|
46
|
+
"panel.clearDraft": "Limpiar borrador",
|
|
47
|
+
"panel.clearResult": "Limpiar respuesta",
|
|
48
|
+
"panel.context": "Contexto",
|
|
49
|
+
"panel.context.project": "Proyecto",
|
|
50
|
+
"panel.context.file": "Archivo",
|
|
51
|
+
"panel.context.selection": "Seleccion",
|
|
52
|
+
"panel.context.none": "Ninguno",
|
|
53
|
+
"panel.kicker": "Agente Gemini",
|
|
54
|
+
"panel.response": "Respuesta",
|
|
55
|
+
"panel.draft": "Borrador",
|
|
56
|
+
"panel.settings": "Configuracion efectiva",
|
|
57
|
+
"panel.prompt": "Prompt",
|
|
58
|
+
"panel.threads": "Conversaciones",
|
|
59
|
+
"panel.newThread": "Nueva conversacion",
|
|
60
|
+
"panel.threadEmpty": "Inicia una conversacion para crear el primer hilo Gemini.",
|
|
61
|
+
"panel.threadCount": "mensajes",
|
|
62
|
+
"panel.conversation": "Conversacion",
|
|
63
|
+
"panel.preview": "Vista previa Markdown",
|
|
64
|
+
"panel.previewSource": "Fuente de vista previa",
|
|
65
|
+
"panel.previewDraft": "Vista previa del borrador",
|
|
66
|
+
"panel.previewResponse": "Vista previa de la respuesta",
|
|
67
|
+
"panel.previewDocument": "Vista previa del documento",
|
|
68
|
+
"panel.previewEmpty": "Ejecuta Gemini o redacta contenido para previsualizar Markdown aqui.",
|
|
69
|
+
"panel.chatInput": "Prompt de conversacion",
|
|
70
|
+
"panel.chatTranscript": "Transcripcion del hilo",
|
|
71
|
+
"panel.composerHint": "Escribe @ para mencionar archivos del espacio de trabajo junto con el contexto del archivo y la seleccion activos.",
|
|
72
|
+
"panel.mentionSuggestions": "Sugerencias de menciones",
|
|
73
|
+
"panel.mentionedFiles": "Archivos mencionados",
|
|
74
|
+
"panel.lastError": "Ultimo error",
|
|
75
|
+
"panel.lastInfo": "Estado",
|
|
76
|
+
"panel.selectionCountSuffix": "caracteres seleccionados",
|
|
77
|
+
"toolbar.label": "Barra de herramientas del Agente Gemini",
|
|
78
|
+
"toolbar.toggleSidebar": "Alternar barra lateral",
|
|
79
|
+
"toolbar.singlePane": "Panel unico",
|
|
80
|
+
"toolbar.splitScreen": "Pantalla dividida",
|
|
81
|
+
"toolbar.close": "Cerrar Agente Gemini",
|
|
82
|
+
"toolbar.resizePanes": "Redimensionar paneles del Agente Gemini",
|
|
83
|
+
"toolbar.focusConversation": "Solo conversacion",
|
|
84
|
+
"toolbar.focusPreview": "Solo vista previa",
|
|
85
|
+
"toolbar.focusDraft": "Solo borrador",
|
|
86
|
+
"diagnostics.ready": "Agente Gemini activado correctamente."
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
export {
|
|
90
|
+
e as geminiAgentEsCatalog
|
|
91
|
+
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import { e as a } from "./esm-entry-OBemaqoR.js";
|
|
2
|
+
const t = {
|
|
2
3
|
locale: "es",
|
|
3
4
|
messages: {
|
|
5
|
+
...Object.fromEntries(Object.values(a).map((e) => [e.key, e.defaultMessage])),
|
|
4
6
|
"manifest.displayName": "Administrador de extensiones",
|
|
5
7
|
"manifest.description": "Consola operativa integrada para explorar, habilitar, deshabilitar, diagnosticar y configurar extensiones.",
|
|
6
8
|
"commands.open.title": "Abrir administrador de extensiones",
|
|
@@ -30,6 +32,8 @@ const e = {
|
|
|
30
32
|
"view.card.actions.activate": "Activar",
|
|
31
33
|
"view.card.actions.deactivate": "Desactivar",
|
|
32
34
|
"view.card.labels.package": "Paquete",
|
|
35
|
+
"view.card.labels.entryId": "ID de entrada",
|
|
36
|
+
"view.card.labels.catalogId": "ID de cat?logo",
|
|
33
37
|
"view.card.labels.version": "Versión",
|
|
34
38
|
"view.card.labels.activation": "Activación",
|
|
35
39
|
"view.card.labels.enabled": "Habilitada",
|
|
@@ -45,9 +49,48 @@ const e = {
|
|
|
45
49
|
"view.card.health.lastError": "Último error",
|
|
46
50
|
"settings.form.state.enabled": "Habilitada",
|
|
47
51
|
"settings.form.state.disabled": "Deshabilitada",
|
|
52
|
+
"settings.shortcut.kicker": "Administrador de extensiones",
|
|
53
|
+
"settings.shortcut.title": "Administrador de extensiones",
|
|
54
|
+
"settings.shortcut.description": "Abre el panel de trabajo para inspeccionar el inventario de ejecución, la compatibilidad, las entradas del catálogo instaladas y los diagnósticos.",
|
|
55
|
+
"settings.stats.extensions": "EXTENSIONES",
|
|
56
|
+
"settings.stats.active": "ACTIVAS",
|
|
57
|
+
"settings.stats.installed": "INSTALADAS",
|
|
58
|
+
"settings.stats.catalog": "CATÁLOGO",
|
|
59
|
+
"settings.chips.indexeddb": "INDEXEDDB",
|
|
60
|
+
"settings.chips.paneOnly": "Solo panel",
|
|
61
|
+
"settings.chips.splitSingle": "DIVIDIDO + UNICO",
|
|
62
|
+
"settings.chips.settingsContent": "Contenido de configuraci?n",
|
|
63
|
+
"settings.chips.englishFallback": "Respaldo en ingl?s",
|
|
64
|
+
"settings.actions.openManager": "Abrir administrador",
|
|
65
|
+
"view.tree.chip": "Navegador de extensiones",
|
|
66
|
+
"view.tree.filter.placeholder": "Filtrar extensiones o entradas de catalogo",
|
|
67
|
+
"view.tree.filter.aria": "Filtrar navegador de extensiones",
|
|
68
|
+
"view.tree.filter.all": "TODO",
|
|
69
|
+
"view.tree.filter.extensions": "EXT",
|
|
70
|
+
"view.tree.filter.catalog": "CAT",
|
|
71
|
+
"view.tree.installedSuffix": "INSTALADAS",
|
|
72
|
+
"view.tree.catalogSuffix": "CATALOGO",
|
|
73
|
+
"view.tree.extensions.empty": "Ninguna extension coincide con el filtro actual.",
|
|
74
|
+
"view.tree.catalog.empty": "Ninguna entrada de catalogo coincide con el filtro actual.",
|
|
75
|
+
"view.catalog.browserTitle": "Navegador de catalogo",
|
|
76
|
+
"view.actions.install": "INSTALAR",
|
|
77
|
+
"view.actions.update": "ACTUALIZAR",
|
|
78
|
+
"view.actions.inspect": "INSPECCIONAR",
|
|
79
|
+
"toolbar.label": "Barra de herramientas del Administrador de extensiones",
|
|
80
|
+
"toolbar.toggleSidebar": "Alternar barra lateral",
|
|
81
|
+
"toolbar.singlePane": "Panel unico",
|
|
82
|
+
"toolbar.splitScreen": "Pantalla dividida",
|
|
83
|
+
"toolbar.importPackage": "Importar paquete de extension",
|
|
84
|
+
"toolbar.exportCatalog": "Exportar instantanea del catalogo",
|
|
85
|
+
"toolbar.close": "Cerrar administrador",
|
|
86
|
+
"toolbar.resizePanes": "Redimensionar paneles del Administrador de extensiones",
|
|
87
|
+
"errors.invalidPortableArtifact": "Artefacto de paquete de extension portatil no valido.",
|
|
88
|
+
"errors.importFailed": "No se pudo importar el paquete de extension.",
|
|
89
|
+
"errors.installFailed": "No se pudo instalar la extension.",
|
|
90
|
+
"errors.removeFailed": "No se pudo eliminar la extension instalada.",
|
|
48
91
|
"diagnostics.ready": "El Administrador de extensiones se activó correctamente."
|
|
49
92
|
}
|
|
50
93
|
};
|
|
51
94
|
export {
|
|
52
|
-
|
|
95
|
+
t as extensionManagerEsCatalog
|
|
53
96
|
};
|