@fresh-editor/fresh-editor 0.2.25 → 0.3.0
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/CHANGELOG.md +152 -0
- package/README.md +6 -0
- package/package.json +1 -1
- package/plugins/audit_mode.i18n.json +14 -14
- package/plugins/audit_mode.ts +76 -33
- package/plugins/config-schema.json +69 -6
- package/plugins/dashboard.ts +1785 -0
- package/plugins/devcontainer.i18n.json +1416 -0
- package/plugins/devcontainer.ts +2066 -0
- package/plugins/git_log.i18n.json +14 -42
- package/plugins/git_log.ts +11 -1
- package/plugins/lib/fresh.d.ts +225 -0
- package/plugins/markdown_compose.ts +54 -6
- package/plugins/schemas/theme.schema.json +108 -0
- package/plugins/theme_editor.i18n.json +28 -0
- package/plugins/theme_editor.ts +4 -1
- package/themes/high-contrast.json +2 -2
- package/themes/nord.json +4 -0
- package/themes/solarized-dark.json +4 -0
|
@@ -0,0 +1,1416 @@
|
|
|
1
|
+
{
|
|
2
|
+
"en": {
|
|
3
|
+
"cmd.show_info": "Dev Container: Show Info",
|
|
4
|
+
"cmd.show_info_desc": "Show dev container configuration in an info panel",
|
|
5
|
+
"cmd.open_config": "Dev Container: Open Config",
|
|
6
|
+
"cmd.open_config_desc": "Open devcontainer.json in the editor",
|
|
7
|
+
"cmd.run_lifecycle": "Dev Container: Run Lifecycle Command",
|
|
8
|
+
"cmd.run_lifecycle_desc": "Pick and run a devcontainer lifecycle command",
|
|
9
|
+
"cmd.show_features": "Dev Container: Show Features",
|
|
10
|
+
"cmd.show_features_desc": "List installed dev container features",
|
|
11
|
+
"cmd.show_ports": "Dev Container: Show Ports",
|
|
12
|
+
"cmd.show_ports_desc": "Show configured port forwards",
|
|
13
|
+
"cmd.rebuild": "Dev Container: Rebuild",
|
|
14
|
+
"cmd.rebuild_desc": "Rebuild the dev container using the devcontainer CLI",
|
|
15
|
+
"cmd.attach": "Dev Container: Attach",
|
|
16
|
+
"cmd.attach_desc": "Start the dev container and route editing through it",
|
|
17
|
+
"cmd.detach": "Dev Container: Detach",
|
|
18
|
+
"cmd.detach_desc": "Stop routing through the dev container and go back to local editing",
|
|
19
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} ports",
|
|
20
|
+
"status.no_config": "No devcontainer.json found",
|
|
21
|
+
"status.panel_opened": "Dev Container info panel opened",
|
|
22
|
+
"status.panel_closed": "Dev Container info panel closed",
|
|
23
|
+
"status.no_lifecycle": "No lifecycle commands defined",
|
|
24
|
+
"status.no_features": "No features configured",
|
|
25
|
+
"status.no_ports": "No ports configured",
|
|
26
|
+
"status.running": "Running %{name}...",
|
|
27
|
+
"status.running_sub": "Running %{name} (%{label})...",
|
|
28
|
+
"status.completed": "%{name} completed successfully",
|
|
29
|
+
"status.failed": "%{name} failed (exit %{code})",
|
|
30
|
+
"status.failed_sub": "%{name} (%{label}) failed (exit %{code})",
|
|
31
|
+
"status.cli_not_found": "devcontainer CLI not found. Install with: npm i -g @devcontainers/cli",
|
|
32
|
+
"status.copied_install": "Copied: %{cmd}",
|
|
33
|
+
"status.rebuilding": "Rebuilding dev container...",
|
|
34
|
+
"status.rebuild_done": "Dev container rebuild complete",
|
|
35
|
+
"status.rebuild_failed": "Rebuild failed: %{error}",
|
|
36
|
+
"popup.cli_title": "Dev Container CLI Not Found",
|
|
37
|
+
"popup.cli_message": "The devcontainer CLI is needed for rebuild. Copy the install command below, or dismiss.",
|
|
38
|
+
"popup.activate_open_config": "Open Config",
|
|
39
|
+
"popup.attach_title": "Dev Container Detected",
|
|
40
|
+
"popup.attach_message": "Folder contains a Dev Container configuration ('%{name}'). Reopen in container?",
|
|
41
|
+
"popup.attach_action_attach": "Reopen in Container",
|
|
42
|
+
"popup.attach_action_dismiss": "Ignore",
|
|
43
|
+
"prompt.run_lifecycle": "Run lifecycle command:",
|
|
44
|
+
"prompt.features": "Dev Container Features:",
|
|
45
|
+
"prompt.ports": "Forwarded Ports:",
|
|
46
|
+
"panel.header": "Dev Container: %{name}",
|
|
47
|
+
"panel.section_image": "Image",
|
|
48
|
+
"panel.section_build": "Build",
|
|
49
|
+
"panel.section_compose": "Docker Compose",
|
|
50
|
+
"panel.section_features": "Features",
|
|
51
|
+
"panel.section_ports": "Ports",
|
|
52
|
+
"panel.section_env": "Environment",
|
|
53
|
+
"panel.section_mounts": "Mounts",
|
|
54
|
+
"panel.section_users": "Users",
|
|
55
|
+
"panel.section_lifecycle": "Lifecycle Commands",
|
|
56
|
+
"panel.section_host_req": "Host Requirements",
|
|
57
|
+
"panel.footer": "Tab: cycle buttons Enter: activate Alt+r: run Alt+o: open Alt+b: rebuild q: close",
|
|
58
|
+
"cmd.scaffold_config": "Dev Container: Create Config",
|
|
59
|
+
"cmd.scaffold_config_desc": "Create a minimal .devcontainer/devcontainer.json in the workspace",
|
|
60
|
+
"status.scaffold_already_exists": "Dev Container config already exists",
|
|
61
|
+
"status.scaffold_created": "Created .devcontainer/devcontainer.json",
|
|
62
|
+
"status.scaffold_failed": "Failed to create Dev Container config",
|
|
63
|
+
"cmd.show_logs": "Dev Container: Show Logs",
|
|
64
|
+
"cmd.show_logs_desc": "Show the attached container's recent stdout/stderr via docker logs",
|
|
65
|
+
"status.logs_require_container": "Show Logs requires an attached Dev Container",
|
|
66
|
+
"status.logs_docker_missing": "docker CLI not found on host",
|
|
67
|
+
"status.logs_loading": "Loading container logs...",
|
|
68
|
+
"status.logs_shown": "Container logs shown",
|
|
69
|
+
"status.logs_empty": "(container has produced no output)",
|
|
70
|
+
"indicator.phase_initialize": "Initializing",
|
|
71
|
+
"indicator.phase_build": "Building",
|
|
72
|
+
"indicator.error_initialize": "initializeCommand failed",
|
|
73
|
+
"status.rebuild_parse_failed": "could not parse devcontainer up output",
|
|
74
|
+
"status.rebuild_missing_container_id": "missing containerId",
|
|
75
|
+
"indicator.error_restart_recovery": "attach did not complete",
|
|
76
|
+
"status.build_log_prepare_failed": "Could not prepare build log file",
|
|
77
|
+
"status.no_build_log": "No dev container build log yet",
|
|
78
|
+
"status.build_log_missing": "Build log file is missing or unreadable",
|
|
79
|
+
"status.cancel_nothing_in_flight": "No dev container attach is in progress",
|
|
80
|
+
"status.attach_cancelled": "Dev container attach cancelled",
|
|
81
|
+
"cmd.show_build_logs": "Dev Container: Show Build Logs",
|
|
82
|
+
"cmd.show_build_logs_desc": "Open the most recent devcontainer up build log",
|
|
83
|
+
"cmd.cancel_attach": "Dev Container: Cancel Startup",
|
|
84
|
+
"cmd.cancel_attach_desc": "Abort an in-flight dev container attach",
|
|
85
|
+
"popup.failed_attach_title": "Dev Container Attach Failed",
|
|
86
|
+
"popup.failed_attach_message": "Dev container attach failed: %{error}",
|
|
87
|
+
"popup.failed_attach_action_retry": "Retry",
|
|
88
|
+
"popup.failed_attach_action_show_logs": "Show Build Logs",
|
|
89
|
+
"popup.failed_attach_action_reopen_local": "Reopen Locally",
|
|
90
|
+
"popup.failed_attach_action_dismiss": "Dismiss (ESC)",
|
|
91
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Show Forwarded Ports",
|
|
92
|
+
"cmd.show_forwarded_ports_panel_desc": "Open a live panel tabulating configured and runtime-bound container ports",
|
|
93
|
+
"ports_panel.header": "Forwarded Ports",
|
|
94
|
+
"ports_panel.col_configured": "Configured",
|
|
95
|
+
"ports_panel.col_protocol": "Protocol",
|
|
96
|
+
"ports_panel.col_label": "Label",
|
|
97
|
+
"ports_panel.col_binding": "Runtime binding",
|
|
98
|
+
"ports_panel.no_ports": "No configured or runtime ports to show.",
|
|
99
|
+
"ports_panel.footer": "r: refresh q/Esc: close",
|
|
100
|
+
"status.ports_panel_opened": "Dev Container Ports panel opened",
|
|
101
|
+
"status.ports_panel_refreshed": "Dev Container Ports panel refreshed"
|
|
102
|
+
},
|
|
103
|
+
"cs": {
|
|
104
|
+
"cmd.show_info": "Dev Container: Zobrazit info",
|
|
105
|
+
"cmd.show_info_desc": "Zobrazit konfiguraci dev containeru v informacnim panelu",
|
|
106
|
+
"cmd.open_config": "Dev Container: Otevrit konfiguraci",
|
|
107
|
+
"cmd.open_config_desc": "Otevrit devcontainer.json v editoru",
|
|
108
|
+
"cmd.run_lifecycle": "Dev Container: Spustit lifecycle prikaz",
|
|
109
|
+
"cmd.run_lifecycle_desc": "Vybrat a spustit lifecycle prikaz devcontaineru",
|
|
110
|
+
"cmd.show_features": "Dev Container: Zobrazit features",
|
|
111
|
+
"cmd.show_features_desc": "Vypsat nainstalovane features dev containeru",
|
|
112
|
+
"cmd.show_ports": "Dev Container: Zobrazit porty",
|
|
113
|
+
"cmd.show_ports_desc": "Zobrazit nakonfigurovane presmerovani portu",
|
|
114
|
+
"cmd.rebuild": "Dev Container: Sestavit znovu",
|
|
115
|
+
"cmd.rebuild_desc": "Znovu sestavit dev container pomoci devcontainer CLI",
|
|
116
|
+
"cmd.attach": "Dev Container: Pripojit",
|
|
117
|
+
"cmd.attach_desc": "Spustit dev container a smerovat editaci skrze nej",
|
|
118
|
+
"cmd.detach": "Dev Container: Odpojit",
|
|
119
|
+
"cmd.detach_desc": "Ukoncit smerovani pres dev container a vratit se k lokalni editaci",
|
|
120
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} portu",
|
|
121
|
+
"status.no_config": "devcontainer.json nenalezen",
|
|
122
|
+
"status.panel_opened": "Informacni panel Dev Containeru otevren",
|
|
123
|
+
"status.panel_closed": "Informacni panel Dev Containeru zavren",
|
|
124
|
+
"status.no_lifecycle": "Zadne lifecycle prikazy nejsou definovany",
|
|
125
|
+
"status.no_features": "Zadne features nejsou nakonfigurovany",
|
|
126
|
+
"status.no_ports": "Zadne porty nejsou nakonfigurovany",
|
|
127
|
+
"status.running": "Spoustim %{name}...",
|
|
128
|
+
"status.running_sub": "Spoustim %{name} (%{label})...",
|
|
129
|
+
"status.completed": "%{name} uspesne dokonceno",
|
|
130
|
+
"status.failed": "%{name} selhalo (navratovy kod %{code})",
|
|
131
|
+
"status.failed_sub": "%{name} (%{label}) selhalo (navratovy kod %{code})",
|
|
132
|
+
"status.cli_not_found": "devcontainer CLI nenalezeno. Nainstalujte: npm i -g @devcontainers/cli",
|
|
133
|
+
"status.copied_install": "Zkopirovano: %{cmd}",
|
|
134
|
+
"status.rebuilding": "Znovu sestavuji dev container...",
|
|
135
|
+
"status.rebuild_done": "Sestaveni dev containeru dokonceno",
|
|
136
|
+
"status.rebuild_failed": "Sestaveni selhalo: %{error}",
|
|
137
|
+
"popup.cli_title": "Dev Container CLI nenalezeno",
|
|
138
|
+
"popup.cli_message": "CLI devcontainer je potrebny pro znovu sestaveni. Zkopirujte instalacni prikaz nize, nebo zavrete.",
|
|
139
|
+
"popup.activate_open_config": "Otevrit konfiguraci",
|
|
140
|
+
"popup.attach_title": "Dev container nalezen",
|
|
141
|
+
"popup.attach_message": "Pripojit k dev containeru '%{name}'? Editor se restartuje, aby soubory a terminaly prochazely skrze container.",
|
|
142
|
+
"popup.attach_action_attach": "Znovu otevřít v kontejneru",
|
|
143
|
+
"popup.attach_action_dismiss": "Ignorovat",
|
|
144
|
+
"prompt.run_lifecycle": "Spustit lifecycle prikaz:",
|
|
145
|
+
"prompt.features": "Dev Container Features:",
|
|
146
|
+
"prompt.ports": "Presmerovane porty:",
|
|
147
|
+
"panel.header": "Dev Container: %{name}",
|
|
148
|
+
"panel.section_image": "Image",
|
|
149
|
+
"panel.section_build": "Build",
|
|
150
|
+
"panel.section_compose": "Docker Compose",
|
|
151
|
+
"panel.section_features": "Features",
|
|
152
|
+
"panel.section_ports": "Porty",
|
|
153
|
+
"panel.section_env": "Promenne prostredi",
|
|
154
|
+
"panel.section_mounts": "Pripojeni",
|
|
155
|
+
"panel.section_users": "Uzivatele",
|
|
156
|
+
"panel.section_lifecycle": "Lifecycle prikazy",
|
|
157
|
+
"panel.section_host_req": "Pozadavky na hostitele",
|
|
158
|
+
"panel.footer": "Tab: prepnout Enter: aktivovat Alt+r: lifecycle Alt+o: otevrit Alt+b: sestavit q: zavrit",
|
|
159
|
+
"cmd.scaffold_config": "Dev Container: Vytvořit konfiguraci",
|
|
160
|
+
"cmd.scaffold_config_desc": "Vytvořit minimální .devcontainer/devcontainer.json v pracovním prostoru",
|
|
161
|
+
"status.scaffold_already_exists": "Konfigurace Dev Containeru již existuje",
|
|
162
|
+
"status.scaffold_created": "Vytvořeno .devcontainer/devcontainer.json",
|
|
163
|
+
"status.scaffold_failed": "Nepodařilo se vytvořit konfiguraci Dev Containeru",
|
|
164
|
+
"cmd.show_logs": "Dev Container: Zobrazit logy",
|
|
165
|
+
"cmd.show_logs_desc": "Zobrazit poslední stdout/stderr připojeného kontejneru přes docker logs",
|
|
166
|
+
"status.logs_require_container": "Zobrazení logů vyžaduje připojený Dev Container",
|
|
167
|
+
"status.logs_docker_missing": "docker CLI nebylo nalezeno na hostiteli",
|
|
168
|
+
"status.logs_loading": "Načítám logy kontejneru...",
|
|
169
|
+
"status.logs_shown": "Logy kontejneru zobrazeny",
|
|
170
|
+
"status.logs_empty": "(kontejner neprodukoval žádný výstup)",
|
|
171
|
+
"indicator.phase_initialize": "Inicializace",
|
|
172
|
+
"indicator.phase_build": "Sestavování",
|
|
173
|
+
"indicator.error_initialize": "initializeCommand selhal",
|
|
174
|
+
"status.rebuild_parse_failed": "nelze zpracovat výstup devcontainer up",
|
|
175
|
+
"status.rebuild_missing_container_id": "chybí containerId",
|
|
176
|
+
"indicator.error_restart_recovery": "připojení nebylo dokončeno",
|
|
177
|
+
"status.build_log_prepare_failed": "Nelze připravit soubor s protokolem sestavení",
|
|
178
|
+
"status.no_build_log": "Žádný protokol sestavení dev containeru zatím není",
|
|
179
|
+
"status.build_log_missing": "Soubor s protokolem sestavení chybí nebo je nečitelný",
|
|
180
|
+
"status.cancel_nothing_in_flight": "Neprobíhá žádné připojování dev containeru",
|
|
181
|
+
"status.attach_cancelled": "Připojování dev containeru zrušeno",
|
|
182
|
+
"cmd.show_build_logs": "Dev Container: Zobrazit protokol sestavení",
|
|
183
|
+
"cmd.show_build_logs_desc": "Otevřít protokol posledního devcontainer up",
|
|
184
|
+
"cmd.cancel_attach": "Dev Container: Zrušit spouštění",
|
|
185
|
+
"cmd.cancel_attach_desc": "Přerušit probíhající připojování dev containeru",
|
|
186
|
+
"popup.failed_attach_title": "Pripojeni k dev containeru selhalo",
|
|
187
|
+
"popup.failed_attach_message": "Pripojeni k dev containeru selhalo: %{error}",
|
|
188
|
+
"popup.failed_attach_action_retry": "Zkusit znovu",
|
|
189
|
+
"popup.failed_attach_action_show_logs": "Zobrazit logy sestaveni",
|
|
190
|
+
"popup.failed_attach_action_reopen_local": "Otevrit lokalne",
|
|
191
|
+
"popup.failed_attach_action_dismiss": "Zavrit (ESC)",
|
|
192
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Zobrazit přesměrované porty",
|
|
193
|
+
"cmd.show_forwarded_ports_panel_desc": "Otevřít panel s přehledem nakonfigurovaných a runtime přesměrovaných portů kontejneru",
|
|
194
|
+
"ports_panel.header": "Přesměrované porty",
|
|
195
|
+
"ports_panel.col_configured": "Konfigurovaný",
|
|
196
|
+
"ports_panel.col_protocol": "Protokol",
|
|
197
|
+
"ports_panel.col_label": "Popis",
|
|
198
|
+
"ports_panel.col_binding": "Runtime vazba",
|
|
199
|
+
"ports_panel.no_ports": "Žádné porty k zobrazení.",
|
|
200
|
+
"ports_panel.footer": "r: obnovit q/Esc: zavřít",
|
|
201
|
+
"status.ports_panel_opened": "Panel přesměrovaných portů otevřen",
|
|
202
|
+
"status.ports_panel_refreshed": "Panel přesměrovaných portů obnoven"
|
|
203
|
+
},
|
|
204
|
+
"de": {
|
|
205
|
+
"cmd.show_info": "Dev Container: Info anzeigen",
|
|
206
|
+
"cmd.show_info_desc": "Dev-Container-Konfiguration im Infopanel anzeigen",
|
|
207
|
+
"cmd.open_config": "Dev Container: Konfiguration oeffnen",
|
|
208
|
+
"cmd.open_config_desc": "devcontainer.json im Editor oeffnen",
|
|
209
|
+
"cmd.run_lifecycle": "Dev Container: Lifecycle-Befehl ausfuehren",
|
|
210
|
+
"cmd.run_lifecycle_desc": "Einen Devcontainer-Lifecycle-Befehl auswaehlen und ausfuehren",
|
|
211
|
+
"cmd.show_features": "Dev Container: Features anzeigen",
|
|
212
|
+
"cmd.show_features_desc": "Installierte Dev-Container-Features auflisten",
|
|
213
|
+
"cmd.show_ports": "Dev Container: Ports anzeigen",
|
|
214
|
+
"cmd.show_ports_desc": "Konfigurierte Portweiterleitungen anzeigen",
|
|
215
|
+
"cmd.rebuild": "Dev Container: Neu erstellen",
|
|
216
|
+
"cmd.rebuild_desc": "Dev Container mit devcontainer CLI neu erstellen",
|
|
217
|
+
"cmd.attach": "Dev Container: Anhaengen",
|
|
218
|
+
"cmd.attach_desc": "Dev Container starten und Bearbeitung darueber leiten",
|
|
219
|
+
"cmd.detach": "Dev Container: Loesen",
|
|
220
|
+
"cmd.detach_desc": "Leitung ueber den Dev Container beenden und zur lokalen Bearbeitung zurueckkehren",
|
|
221
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} Features, %{ports} Ports",
|
|
222
|
+
"status.no_config": "Keine devcontainer.json gefunden",
|
|
223
|
+
"status.panel_opened": "Dev-Container-Infopanel geoeffnet",
|
|
224
|
+
"status.panel_closed": "Dev-Container-Infopanel geschlossen",
|
|
225
|
+
"status.no_lifecycle": "Keine Lifecycle-Befehle definiert",
|
|
226
|
+
"status.no_features": "Keine Features konfiguriert",
|
|
227
|
+
"status.no_ports": "Keine Ports konfiguriert",
|
|
228
|
+
"status.running": "%{name} wird ausgefuehrt...",
|
|
229
|
+
"status.running_sub": "%{name} (%{label}) wird ausgefuehrt...",
|
|
230
|
+
"status.completed": "%{name} erfolgreich abgeschlossen",
|
|
231
|
+
"status.failed": "%{name} fehlgeschlagen (Exit-Code %{code})",
|
|
232
|
+
"status.failed_sub": "%{name} (%{label}) fehlgeschlagen (Exit-Code %{code})",
|
|
233
|
+
"status.cli_not_found": "devcontainer CLI nicht gefunden. Installieren mit: npm i -g @devcontainers/cli",
|
|
234
|
+
"status.copied_install": "Kopiert: %{cmd}",
|
|
235
|
+
"status.rebuilding": "Dev Container wird neu erstellt...",
|
|
236
|
+
"status.rebuild_done": "Dev-Container-Neuerstellung abgeschlossen",
|
|
237
|
+
"status.rebuild_failed": "Neuerstellung fehlgeschlagen: %{error}",
|
|
238
|
+
"popup.cli_title": "Dev Container CLI nicht gefunden",
|
|
239
|
+
"popup.cli_message": "Das devcontainer CLI wird fuer die Neuerstellung benoetigt. Kopieren Sie den Installationsbefehl oder schliessen Sie.",
|
|
240
|
+
"popup.activate_open_config": "Konfiguration oeffnen",
|
|
241
|
+
"popup.attach_title": "Dev Container gefunden",
|
|
242
|
+
"popup.attach_message": "An Dev Container '%{name}' anhaengen? Der Editor startet neu, damit Datei-Operationen und Terminals ueber den Container laufen.",
|
|
243
|
+
"popup.attach_action_attach": "Im Container erneut öffnen",
|
|
244
|
+
"popup.attach_action_dismiss": "Ignorieren",
|
|
245
|
+
"prompt.run_lifecycle": "Lifecycle-Befehl ausfuehren:",
|
|
246
|
+
"prompt.features": "Dev-Container-Features:",
|
|
247
|
+
"prompt.ports": "Weitergeleitete Ports:",
|
|
248
|
+
"panel.header": "Dev Container: %{name}",
|
|
249
|
+
"panel.section_image": "Image",
|
|
250
|
+
"panel.section_build": "Build",
|
|
251
|
+
"panel.section_compose": "Docker Compose",
|
|
252
|
+
"panel.section_features": "Features",
|
|
253
|
+
"panel.section_ports": "Ports",
|
|
254
|
+
"panel.section_env": "Umgebungsvariablen",
|
|
255
|
+
"panel.section_mounts": "Einhaengungen",
|
|
256
|
+
"panel.section_users": "Benutzer",
|
|
257
|
+
"panel.section_lifecycle": "Lifecycle-Befehle",
|
|
258
|
+
"panel.section_host_req": "Hostanforderungen",
|
|
259
|
+
"panel.footer": "Tab: Wechseln Enter: Aktivieren Alt+r: Lifecycle Alt+o: Oeffnen Alt+b: Erstellen q: Schliessen",
|
|
260
|
+
"cmd.scaffold_config": "Dev Container: Konfiguration erstellen",
|
|
261
|
+
"cmd.scaffold_config_desc": "Minimale .devcontainer/devcontainer.json im Workspace erstellen",
|
|
262
|
+
"status.scaffold_already_exists": "Dev-Container-Konfiguration existiert bereits",
|
|
263
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json erstellt",
|
|
264
|
+
"status.scaffold_failed": "Dev-Container-Konfiguration konnte nicht erstellt werden",
|
|
265
|
+
"cmd.show_logs": "Dev Container: Logs anzeigen",
|
|
266
|
+
"cmd.show_logs_desc": "Kürzliche stdout/stderr des angehängten Containers via docker logs anzeigen",
|
|
267
|
+
"status.logs_require_container": "Logs anzeigen erfordert einen angehängten Dev Container",
|
|
268
|
+
"status.logs_docker_missing": "docker CLI auf dem Host nicht gefunden",
|
|
269
|
+
"status.logs_loading": "Container-Logs werden geladen...",
|
|
270
|
+
"status.logs_shown": "Container-Logs angezeigt",
|
|
271
|
+
"status.logs_empty": "(Container hat keine Ausgabe produziert)",
|
|
272
|
+
"indicator.phase_initialize": "Initialisieren",
|
|
273
|
+
"indicator.phase_build": "Erstellen",
|
|
274
|
+
"indicator.error_initialize": "initializeCommand fehlgeschlagen",
|
|
275
|
+
"status.rebuild_parse_failed": "Ausgabe von devcontainer up konnte nicht analysiert werden",
|
|
276
|
+
"status.rebuild_missing_container_id": "containerId fehlt",
|
|
277
|
+
"indicator.error_restart_recovery": "Anhängen nicht abgeschlossen",
|
|
278
|
+
"status.build_log_prepare_failed": "Build-Protokolldatei konnte nicht vorbereitet werden",
|
|
279
|
+
"status.no_build_log": "Noch kein Dev Container Build-Protokoll vorhanden",
|
|
280
|
+
"status.build_log_missing": "Build-Protokolldatei fehlt oder ist nicht lesbar",
|
|
281
|
+
"status.cancel_nothing_in_flight": "Kein Dev Container-Anhang läuft gerade",
|
|
282
|
+
"status.attach_cancelled": "Dev Container-Anhang abgebrochen",
|
|
283
|
+
"cmd.show_build_logs": "Dev Container: Build-Protokolle anzeigen",
|
|
284
|
+
"cmd.show_build_logs_desc": "Öffnet das letzte devcontainer up Build-Protokoll",
|
|
285
|
+
"cmd.cancel_attach": "Dev Container: Start abbrechen",
|
|
286
|
+
"cmd.cancel_attach_desc": "Bricht einen laufenden Dev Container-Anhang ab",
|
|
287
|
+
"popup.failed_attach_title": "Verbindung zum Dev Container fehlgeschlagen",
|
|
288
|
+
"popup.failed_attach_message": "Verbindung zum Dev Container fehlgeschlagen: %{error}",
|
|
289
|
+
"popup.failed_attach_action_retry": "Erneut versuchen",
|
|
290
|
+
"popup.failed_attach_action_show_logs": "Build-Logs anzeigen",
|
|
291
|
+
"popup.failed_attach_action_reopen_local": "Lokal oeffnen",
|
|
292
|
+
"popup.failed_attach_action_dismiss": "Schliessen (ESC)",
|
|
293
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Weitergeleitete Ports anzeigen",
|
|
294
|
+
"cmd.show_forwarded_ports_panel_desc": "Live-Panel mit konfigurierten und zur Laufzeit gebundenen Container-Ports oeffnen",
|
|
295
|
+
"ports_panel.header": "Weitergeleitete Ports",
|
|
296
|
+
"ports_panel.col_configured": "Konfiguriert",
|
|
297
|
+
"ports_panel.col_protocol": "Protokoll",
|
|
298
|
+
"ports_panel.col_label": "Label",
|
|
299
|
+
"ports_panel.col_binding": "Laufzeit-Bindung",
|
|
300
|
+
"ports_panel.no_ports": "Keine konfigurierten oder aktiven Ports.",
|
|
301
|
+
"ports_panel.footer": "r: aktualisieren q/Esc: schliessen",
|
|
302
|
+
"status.ports_panel_opened": "Panel fuer weitergeleitete Ports geoeffnet",
|
|
303
|
+
"status.ports_panel_refreshed": "Panel fuer weitergeleitete Ports aktualisiert"
|
|
304
|
+
},
|
|
305
|
+
"es": {
|
|
306
|
+
"cmd.show_info": "Dev Container: Mostrar Info",
|
|
307
|
+
"cmd.show_info_desc": "Mostrar configuracion del dev container en un panel informativo",
|
|
308
|
+
"cmd.open_config": "Dev Container: Abrir Config",
|
|
309
|
+
"cmd.open_config_desc": "Abrir devcontainer.json en el editor",
|
|
310
|
+
"cmd.run_lifecycle": "Dev Container: Ejecutar Comando Lifecycle",
|
|
311
|
+
"cmd.run_lifecycle_desc": "Seleccionar y ejecutar un comando lifecycle del devcontainer",
|
|
312
|
+
"cmd.show_features": "Dev Container: Mostrar Features",
|
|
313
|
+
"cmd.show_features_desc": "Listar features instaladas del dev container",
|
|
314
|
+
"cmd.show_ports": "Dev Container: Mostrar Puertos",
|
|
315
|
+
"cmd.show_ports_desc": "Mostrar redirecciones de puertos configuradas",
|
|
316
|
+
"cmd.rebuild": "Dev Container: Reconstruir",
|
|
317
|
+
"cmd.rebuild_desc": "Reconstruir el dev container usando el CLI devcontainer",
|
|
318
|
+
"cmd.attach": "Dev Container: Conectar",
|
|
319
|
+
"cmd.attach_desc": "Iniciar el dev container y enrutar la edicion a traves de el",
|
|
320
|
+
"cmd.detach": "Dev Container: Desconectar",
|
|
321
|
+
"cmd.detach_desc": "Dejar de enrutar a traves del dev container y volver a la edicion local",
|
|
322
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} puertos",
|
|
323
|
+
"status.no_config": "No se encontro devcontainer.json",
|
|
324
|
+
"status.panel_opened": "Panel informativo de Dev Container abierto",
|
|
325
|
+
"status.panel_closed": "Panel informativo de Dev Container cerrado",
|
|
326
|
+
"status.no_lifecycle": "No hay comandos lifecycle definidos",
|
|
327
|
+
"status.no_features": "No hay features configuradas",
|
|
328
|
+
"status.no_ports": "No hay puertos configurados",
|
|
329
|
+
"status.running": "Ejecutando %{name}...",
|
|
330
|
+
"status.running_sub": "Ejecutando %{name} (%{label})...",
|
|
331
|
+
"status.completed": "%{name} completado exitosamente",
|
|
332
|
+
"status.failed": "%{name} fallo (codigo de salida %{code})",
|
|
333
|
+
"status.failed_sub": "%{name} (%{label}) fallo (codigo de salida %{code})",
|
|
334
|
+
"status.cli_not_found": "CLI devcontainer no encontrado. Instalar con: npm i -g @devcontainers/cli",
|
|
335
|
+
"status.copied_install": "Copiado: %{cmd}",
|
|
336
|
+
"status.rebuilding": "Reconstruyendo dev container...",
|
|
337
|
+
"status.rebuild_done": "Reconstruccion del dev container completada",
|
|
338
|
+
"status.rebuild_failed": "Reconstruccion fallida: %{error}",
|
|
339
|
+
"popup.cli_title": "CLI Dev Container no encontrado",
|
|
340
|
+
"popup.cli_message": "El CLI devcontainer es necesario para reconstruir. Copie el comando de instalacion o descarte.",
|
|
341
|
+
"popup.activate_open_config": "Abrir config",
|
|
342
|
+
"popup.attach_title": "Dev container detectado",
|
|
343
|
+
"popup.attach_message": "Conectar al dev container '%{name}'? El editor se reiniciara para que las operaciones de archivo y los terminales pasen por el container.",
|
|
344
|
+
"popup.attach_action_attach": "Reabrir en contenedor",
|
|
345
|
+
"popup.attach_action_dismiss": "Ignorar",
|
|
346
|
+
"prompt.run_lifecycle": "Ejecutar comando lifecycle:",
|
|
347
|
+
"prompt.features": "Features de Dev Container:",
|
|
348
|
+
"prompt.ports": "Puertos redirigidos:",
|
|
349
|
+
"panel.header": "Dev Container: %{name}",
|
|
350
|
+
"panel.section_image": "Imagen",
|
|
351
|
+
"panel.section_build": "Build",
|
|
352
|
+
"panel.section_compose": "Docker Compose",
|
|
353
|
+
"panel.section_features": "Features",
|
|
354
|
+
"panel.section_ports": "Puertos",
|
|
355
|
+
"panel.section_env": "Variables de Entorno",
|
|
356
|
+
"panel.section_mounts": "Montajes",
|
|
357
|
+
"panel.section_users": "Usuarios",
|
|
358
|
+
"panel.section_lifecycle": "Comandos Lifecycle",
|
|
359
|
+
"panel.section_host_req": "Requisitos del Host",
|
|
360
|
+
"panel.footer": "Tab: ciclar Enter: activar Alt+r: lifecycle Alt+o: abrir Alt+b: reconstruir q: cerrar",
|
|
361
|
+
"cmd.scaffold_config": "Dev Container: Crear configuración",
|
|
362
|
+
"cmd.scaffold_config_desc": "Crear un .devcontainer/devcontainer.json mínimo en el workspace",
|
|
363
|
+
"status.scaffold_already_exists": "La configuración del Dev Container ya existe",
|
|
364
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json creado",
|
|
365
|
+
"status.scaffold_failed": "No se pudo crear la configuración del Dev Container",
|
|
366
|
+
"cmd.show_logs": "Dev Container: Mostrar logs",
|
|
367
|
+
"cmd.show_logs_desc": "Mostrar stdout/stderr reciente del contenedor adjunto vía docker logs",
|
|
368
|
+
"status.logs_require_container": "Mostrar logs requiere un Dev Container adjunto",
|
|
369
|
+
"status.logs_docker_missing": "CLI docker no encontrado en el host",
|
|
370
|
+
"status.logs_loading": "Cargando logs del contenedor...",
|
|
371
|
+
"status.logs_shown": "Logs del contenedor mostrados",
|
|
372
|
+
"status.logs_empty": "(el contenedor no ha producido salida)",
|
|
373
|
+
"indicator.phase_initialize": "Inicializando",
|
|
374
|
+
"indicator.phase_build": "Construyendo",
|
|
375
|
+
"indicator.error_initialize": "initializeCommand falló",
|
|
376
|
+
"status.rebuild_parse_failed": "no se pudo analizar la salida de devcontainer up",
|
|
377
|
+
"status.rebuild_missing_container_id": "falta containerId",
|
|
378
|
+
"indicator.error_restart_recovery": "la conexión no se completó",
|
|
379
|
+
"status.build_log_prepare_failed": "No se pudo preparar el archivo de registro de compilación",
|
|
380
|
+
"status.no_build_log": "Aún no hay registro de compilación del dev container",
|
|
381
|
+
"status.build_log_missing": "El archivo de registro de compilación falta o es ilegible",
|
|
382
|
+
"status.cancel_nothing_in_flight": "No hay ninguna conexión de dev container en curso",
|
|
383
|
+
"status.attach_cancelled": "Conexión de dev container cancelada",
|
|
384
|
+
"cmd.show_build_logs": "Dev Container: Mostrar registros de compilación",
|
|
385
|
+
"cmd.show_build_logs_desc": "Abre el registro del último devcontainer up",
|
|
386
|
+
"cmd.cancel_attach": "Dev Container: Cancelar inicio",
|
|
387
|
+
"cmd.cancel_attach_desc": "Aborta una conexión de dev container en curso",
|
|
388
|
+
"popup.failed_attach_title": "Error al conectar al dev container",
|
|
389
|
+
"popup.failed_attach_message": "Error al conectar al dev container: %{error}",
|
|
390
|
+
"popup.failed_attach_action_retry": "Reintentar",
|
|
391
|
+
"popup.failed_attach_action_show_logs": "Mostrar logs de compilacion",
|
|
392
|
+
"popup.failed_attach_action_reopen_local": "Reabrir en local",
|
|
393
|
+
"popup.failed_attach_action_dismiss": "Descartar (ESC)",
|
|
394
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Mostrar puertos reenviados",
|
|
395
|
+
"cmd.show_forwarded_ports_panel_desc": "Abrir un panel con los puertos configurados y los enlaces en tiempo de ejecucion",
|
|
396
|
+
"ports_panel.header": "Puertos reenviados",
|
|
397
|
+
"ports_panel.col_configured": "Configurado",
|
|
398
|
+
"ports_panel.col_protocol": "Protocolo",
|
|
399
|
+
"ports_panel.col_label": "Etiqueta",
|
|
400
|
+
"ports_panel.col_binding": "Enlace en ejecucion",
|
|
401
|
+
"ports_panel.no_ports": "No hay puertos configurados ni en ejecucion.",
|
|
402
|
+
"ports_panel.footer": "r: refrescar q/Esc: cerrar",
|
|
403
|
+
"status.ports_panel_opened": "Panel de puertos reenviados abierto",
|
|
404
|
+
"status.ports_panel_refreshed": "Panel de puertos reenviados actualizado"
|
|
405
|
+
},
|
|
406
|
+
"fr": {
|
|
407
|
+
"cmd.show_info": "Dev Container: Afficher les infos",
|
|
408
|
+
"cmd.show_info_desc": "Afficher la configuration du dev container dans un panneau",
|
|
409
|
+
"cmd.open_config": "Dev Container: Ouvrir la config",
|
|
410
|
+
"cmd.open_config_desc": "Ouvrir devcontainer.json dans l'editeur",
|
|
411
|
+
"cmd.run_lifecycle": "Dev Container: Executer commande lifecycle",
|
|
412
|
+
"cmd.run_lifecycle_desc": "Choisir et executer une commande lifecycle du devcontainer",
|
|
413
|
+
"cmd.show_features": "Dev Container: Afficher les features",
|
|
414
|
+
"cmd.show_features_desc": "Lister les features installees du dev container",
|
|
415
|
+
"cmd.show_ports": "Dev Container: Afficher les ports",
|
|
416
|
+
"cmd.show_ports_desc": "Afficher les redirections de ports configurees",
|
|
417
|
+
"cmd.rebuild": "Dev Container: Reconstruire",
|
|
418
|
+
"cmd.rebuild_desc": "Reconstruire le dev container avec le CLI devcontainer",
|
|
419
|
+
"cmd.attach": "Dev Container: Attacher",
|
|
420
|
+
"cmd.attach_desc": "Demarrer le dev container et y router les operations d'edition",
|
|
421
|
+
"cmd.detach": "Dev Container: Detacher",
|
|
422
|
+
"cmd.detach_desc": "Arreter le routage via le dev container et revenir a l'edition locale",
|
|
423
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} ports",
|
|
424
|
+
"status.no_config": "Aucun devcontainer.json trouve",
|
|
425
|
+
"status.panel_opened": "Panneau d'info Dev Container ouvert",
|
|
426
|
+
"status.panel_closed": "Panneau d'info Dev Container ferme",
|
|
427
|
+
"status.no_lifecycle": "Aucune commande lifecycle definie",
|
|
428
|
+
"status.no_features": "Aucune feature configuree",
|
|
429
|
+
"status.no_ports": "Aucun port configure",
|
|
430
|
+
"status.running": "Execution de %{name}...",
|
|
431
|
+
"status.running_sub": "Execution de %{name} (%{label})...",
|
|
432
|
+
"status.completed": "%{name} termine avec succes",
|
|
433
|
+
"status.failed": "%{name} echoue (code de sortie %{code})",
|
|
434
|
+
"status.failed_sub": "%{name} (%{label}) echoue (code de sortie %{code})",
|
|
435
|
+
"status.cli_not_found": "CLI devcontainer introuvable. Installer avec: npm i -g @devcontainers/cli",
|
|
436
|
+
"status.copied_install": "Copie: %{cmd}",
|
|
437
|
+
"status.rebuilding": "Reconstruction du dev container...",
|
|
438
|
+
"status.rebuild_done": "Reconstruction du dev container terminee",
|
|
439
|
+
"status.rebuild_failed": "Reconstruction echouee: %{error}",
|
|
440
|
+
"popup.cli_title": "CLI Dev Container introuvable",
|
|
441
|
+
"popup.cli_message": "Le CLI devcontainer est necessaire pour la reconstruction. Copiez la commande d'installation ou fermez.",
|
|
442
|
+
"popup.activate_open_config": "Ouvrir la config",
|
|
443
|
+
"popup.attach_title": "Dev container detecte",
|
|
444
|
+
"popup.attach_message": "Attacher le dev container '%{name}' ? L'editeur va redemarrer pour que les E/S de fichiers et les terminaux passent par le container.",
|
|
445
|
+
"popup.attach_action_attach": "Rouvrir dans le conteneur",
|
|
446
|
+
"popup.attach_action_dismiss": "Ignorer",
|
|
447
|
+
"prompt.run_lifecycle": "Executer commande lifecycle:",
|
|
448
|
+
"prompt.features": "Features Dev Container:",
|
|
449
|
+
"prompt.ports": "Ports rediriges:",
|
|
450
|
+
"panel.header": "Dev Container: %{name}",
|
|
451
|
+
"panel.section_image": "Image",
|
|
452
|
+
"panel.section_build": "Build",
|
|
453
|
+
"panel.section_compose": "Docker Compose",
|
|
454
|
+
"panel.section_features": "Features",
|
|
455
|
+
"panel.section_ports": "Ports",
|
|
456
|
+
"panel.section_env": "Variables d'environnement",
|
|
457
|
+
"panel.section_mounts": "Montages",
|
|
458
|
+
"panel.section_users": "Utilisateurs",
|
|
459
|
+
"panel.section_lifecycle": "Commandes Lifecycle",
|
|
460
|
+
"panel.section_host_req": "Exigences de l'hote",
|
|
461
|
+
"panel.footer": "Tab: cycler Enter: activer Alt+r: lifecycle Alt+o: ouvrir Alt+b: reconstruire q: fermer",
|
|
462
|
+
"cmd.scaffold_config": "Dev Container: Créer la configuration",
|
|
463
|
+
"cmd.scaffold_config_desc": "Créer un .devcontainer/devcontainer.json minimal dans l'espace de travail",
|
|
464
|
+
"status.scaffold_already_exists": "La configuration Dev Container existe déjà",
|
|
465
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json créé",
|
|
466
|
+
"status.scaffold_failed": "Échec de la création de la configuration Dev Container",
|
|
467
|
+
"cmd.show_logs": "Dev Container: Afficher les logs",
|
|
468
|
+
"cmd.show_logs_desc": "Afficher les stdout/stderr récents du conteneur attaché via docker logs",
|
|
469
|
+
"status.logs_require_container": "Afficher les logs nécessite un Dev Container attaché",
|
|
470
|
+
"status.logs_docker_missing": "CLI docker introuvable sur l'hôte",
|
|
471
|
+
"status.logs_loading": "Chargement des logs du conteneur...",
|
|
472
|
+
"status.logs_shown": "Logs du conteneur affichés",
|
|
473
|
+
"status.logs_empty": "(le conteneur n'a produit aucune sortie)",
|
|
474
|
+
"indicator.phase_initialize": "Initialisation",
|
|
475
|
+
"indicator.phase_build": "Construction",
|
|
476
|
+
"indicator.error_initialize": "initializeCommand a échoué",
|
|
477
|
+
"status.rebuild_parse_failed": "impossible d'analyser la sortie de devcontainer up",
|
|
478
|
+
"status.rebuild_missing_container_id": "containerId manquant",
|
|
479
|
+
"indicator.error_restart_recovery": "l'attachement n'a pas abouti",
|
|
480
|
+
"status.build_log_prepare_failed": "Impossible de préparer le fichier journal de compilation",
|
|
481
|
+
"status.no_build_log": "Aucun journal de compilation de dev container",
|
|
482
|
+
"status.build_log_missing": "Fichier journal de compilation manquant ou illisible",
|
|
483
|
+
"status.cancel_nothing_in_flight": "Aucun rattachement de dev container en cours",
|
|
484
|
+
"status.attach_cancelled": "Rattachement de dev container annulé",
|
|
485
|
+
"cmd.show_build_logs": "Dev Container : Afficher les journaux de compilation",
|
|
486
|
+
"cmd.show_build_logs_desc": "Ouvrir le dernier journal de devcontainer up",
|
|
487
|
+
"cmd.cancel_attach": "Dev Container : Annuler le démarrage",
|
|
488
|
+
"cmd.cancel_attach_desc": "Interrompt un rattachement de dev container en cours",
|
|
489
|
+
"popup.failed_attach_title": "Echec de l'attachement au dev container",
|
|
490
|
+
"popup.failed_attach_message": "Echec de l'attachement au dev container : %{error}",
|
|
491
|
+
"popup.failed_attach_action_retry": "Reessayer",
|
|
492
|
+
"popup.failed_attach_action_show_logs": "Afficher les logs de build",
|
|
493
|
+
"popup.failed_attach_action_reopen_local": "Rouvrir en local",
|
|
494
|
+
"popup.failed_attach_action_dismiss": "Ignorer (ESC)",
|
|
495
|
+
"cmd.show_forwarded_ports_panel": "Dev Container : Afficher les ports redirigés",
|
|
496
|
+
"cmd.show_forwarded_ports_panel_desc": "Ouvrir un panneau listant les ports configures et les liaisons runtime du container",
|
|
497
|
+
"ports_panel.header": "Ports redirigés",
|
|
498
|
+
"ports_panel.col_configured": "Configuré",
|
|
499
|
+
"ports_panel.col_protocol": "Protocole",
|
|
500
|
+
"ports_panel.col_label": "Étiquette",
|
|
501
|
+
"ports_panel.col_binding": "Liaison runtime",
|
|
502
|
+
"ports_panel.no_ports": "Aucun port configure ou actif.",
|
|
503
|
+
"ports_panel.footer": "r : actualiser q/Echap : fermer",
|
|
504
|
+
"status.ports_panel_opened": "Panneau des ports redirigés ouvert",
|
|
505
|
+
"status.ports_panel_refreshed": "Panneau des ports redirigés actualisé"
|
|
506
|
+
},
|
|
507
|
+
"ja": {
|
|
508
|
+
"cmd.show_info": "Dev Container: 情報を表示",
|
|
509
|
+
"cmd.show_info_desc": "Dev Container設定を情報パネルに表示",
|
|
510
|
+
"cmd.open_config": "Dev Container: 設定を開く",
|
|
511
|
+
"cmd.open_config_desc": "devcontainer.jsonをエディタで開く",
|
|
512
|
+
"cmd.run_lifecycle": "Dev Container: ライフサイクルコマンドを実行",
|
|
513
|
+
"cmd.run_lifecycle_desc": "devcontainerのライフサイクルコマンドを選択して実行",
|
|
514
|
+
"cmd.show_features": "Dev Container: Featuresを表示",
|
|
515
|
+
"cmd.show_features_desc": "インストール済みのDev Container Featuresを一覧表示",
|
|
516
|
+
"cmd.show_ports": "Dev Container: ポートを表示",
|
|
517
|
+
"cmd.show_ports_desc": "設定済みのポート転送を表示",
|
|
518
|
+
"cmd.rebuild": "Dev Container: リビルド",
|
|
519
|
+
"cmd.rebuild_desc": "devcontainer CLIを使用してDev Containerをリビルド",
|
|
520
|
+
"cmd.attach": "Dev Container: アタッチ",
|
|
521
|
+
"cmd.attach_desc": "Dev Containerを起動し、ファイル操作とターミナルをコンテナ経由にルーティング",
|
|
522
|
+
"cmd.detach": "Dev Container: デタッチ",
|
|
523
|
+
"cmd.detach_desc": "Dev Containerへのルーティングを停止し、ローカル編集に戻る",
|
|
524
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features}個のfeature, %{ports}個のポート",
|
|
525
|
+
"status.no_config": "devcontainer.jsonが見つかりません",
|
|
526
|
+
"status.panel_opened": "Dev Container情報パネルを開きました",
|
|
527
|
+
"status.panel_closed": "Dev Container情報パネルを閉じました",
|
|
528
|
+
"status.no_lifecycle": "ライフサイクルコマンドが定義されていません",
|
|
529
|
+
"status.no_features": "Featureが設定されていません",
|
|
530
|
+
"status.no_ports": "ポートが設定されていません",
|
|
531
|
+
"status.running": "%{name}を実行中...",
|
|
532
|
+
"status.running_sub": "%{name} (%{label})を実行中...",
|
|
533
|
+
"status.completed": "%{name}が正常に完了しました",
|
|
534
|
+
"status.failed": "%{name}が失敗しました(終了コード%{code})",
|
|
535
|
+
"status.failed_sub": "%{name} (%{label})が失敗しました(終了コード%{code})",
|
|
536
|
+
"status.cli_not_found": "devcontainer CLIが見つかりません。インストール: npm i -g @devcontainers/cli",
|
|
537
|
+
"status.copied_install": "コピーしました: %{cmd}",
|
|
538
|
+
"status.rebuilding": "Dev Containerをリビルド中...",
|
|
539
|
+
"status.rebuild_done": "Dev Containerのリビルドが完了しました",
|
|
540
|
+
"status.rebuild_failed": "リビルド失敗: %{error}",
|
|
541
|
+
"popup.cli_title": "Dev Container CLIが見つかりません",
|
|
542
|
+
"popup.cli_message": "リビルドにはdevcontainer CLIが必要です。インストールコマンドをコピーするか、閉じてください。",
|
|
543
|
+
"popup.activate_open_config": "設定を開く",
|
|
544
|
+
"popup.attach_title": "Dev Containerを検出しました",
|
|
545
|
+
"popup.attach_message": "Dev Container '%{name}' にアタッチしますか?エディタが再起動し、ファイル操作とターミナルがコンテナ経由で実行されます。",
|
|
546
|
+
"popup.attach_action_attach": "コンテナで再度開く",
|
|
547
|
+
"popup.attach_action_dismiss": "無視",
|
|
548
|
+
"prompt.run_lifecycle": "ライフサイクルコマンドを実行:",
|
|
549
|
+
"prompt.features": "Dev Container Features:",
|
|
550
|
+
"prompt.ports": "転送ポート:",
|
|
551
|
+
"panel.header": "Dev Container: %{name}",
|
|
552
|
+
"panel.section_image": "イメージ",
|
|
553
|
+
"panel.section_build": "ビルド",
|
|
554
|
+
"panel.section_compose": "Docker Compose",
|
|
555
|
+
"panel.section_features": "Features",
|
|
556
|
+
"panel.section_ports": "ポート",
|
|
557
|
+
"panel.section_env": "環境変数",
|
|
558
|
+
"panel.section_mounts": "マウント",
|
|
559
|
+
"panel.section_users": "ユーザー",
|
|
560
|
+
"panel.section_lifecycle": "ライフサイクルコマンド",
|
|
561
|
+
"panel.section_host_req": "ホスト要件",
|
|
562
|
+
"panel.footer": "Tab: 切替 Enter: 実行 Alt+r: ライフサイクル Alt+o: 設定 Alt+b: リビルド q: 閉じる",
|
|
563
|
+
"cmd.scaffold_config": "Dev Container: 設定を作成",
|
|
564
|
+
"cmd.scaffold_config_desc": "ワークスペースに最小の .devcontainer/devcontainer.json を作成",
|
|
565
|
+
"status.scaffold_already_exists": "Dev Container設定は既に存在します",
|
|
566
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json を作成しました",
|
|
567
|
+
"status.scaffold_failed": "Dev Container設定の作成に失敗しました",
|
|
568
|
+
"cmd.show_logs": "Dev Container: ログを表示",
|
|
569
|
+
"cmd.show_logs_desc": "docker logs 経由で接続中のコンテナの最近のstdout/stderrを表示",
|
|
570
|
+
"status.logs_require_container": "ログ表示には接続中のDev Containerが必要です",
|
|
571
|
+
"status.logs_docker_missing": "ホストに docker CLI が見つかりません",
|
|
572
|
+
"status.logs_loading": "コンテナログを読み込み中...",
|
|
573
|
+
"status.logs_shown": "コンテナログを表示しました",
|
|
574
|
+
"status.logs_empty": "(コンテナは出力を生成していません)",
|
|
575
|
+
"indicator.phase_initialize": "初期化中",
|
|
576
|
+
"indicator.phase_build": "ビルド中",
|
|
577
|
+
"indicator.error_initialize": "initializeCommand が失敗しました",
|
|
578
|
+
"status.rebuild_parse_failed": "devcontainer up の出力を解析できませんでした",
|
|
579
|
+
"status.rebuild_missing_container_id": "containerId がありません",
|
|
580
|
+
"indicator.error_restart_recovery": "アタッチが完了しませんでした",
|
|
581
|
+
"status.build_log_prepare_failed": "ビルドログファイルを準備できませんでした",
|
|
582
|
+
"status.no_build_log": "Dev Container のビルドログがまだありません",
|
|
583
|
+
"status.build_log_missing": "ビルドログファイルが見つからないか読み取れません",
|
|
584
|
+
"status.cancel_nothing_in_flight": "進行中の Dev Container のアタッチはありません",
|
|
585
|
+
"status.attach_cancelled": "Dev Container のアタッチをキャンセルしました",
|
|
586
|
+
"cmd.show_build_logs": "Dev Container: ビルドログを表示",
|
|
587
|
+
"cmd.show_build_logs_desc": "最新の devcontainer up のビルドログを開く",
|
|
588
|
+
"cmd.cancel_attach": "Dev Container: 起動をキャンセル",
|
|
589
|
+
"cmd.cancel_attach_desc": "進行中の Dev Container のアタッチを中断する",
|
|
590
|
+
"popup.failed_attach_title": "Dev Container への接続に失敗しました",
|
|
591
|
+
"popup.failed_attach_message": "Dev Container への接続に失敗しました: %{error}",
|
|
592
|
+
"popup.failed_attach_action_retry": "再試行",
|
|
593
|
+
"popup.failed_attach_action_show_logs": "ビルドログを表示",
|
|
594
|
+
"popup.failed_attach_action_reopen_local": "ローカルで開きなおす",
|
|
595
|
+
"popup.failed_attach_action_dismiss": "閉じる (ESC)",
|
|
596
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: 転送ポートを表示",
|
|
597
|
+
"cmd.show_forwarded_ports_panel_desc": "設定済みポートとコンテナ実行時のバインドを一覧表示するパネルを開く",
|
|
598
|
+
"ports_panel.header": "転送ポート",
|
|
599
|
+
"ports_panel.col_configured": "設定済み",
|
|
600
|
+
"ports_panel.col_protocol": "プロトコル",
|
|
601
|
+
"ports_panel.col_label": "ラベル",
|
|
602
|
+
"ports_panel.col_binding": "実行時バインド",
|
|
603
|
+
"ports_panel.no_ports": "表示するポートがありません。",
|
|
604
|
+
"ports_panel.footer": "r: 更新 q/Esc: 閉じる",
|
|
605
|
+
"status.ports_panel_opened": "転送ポートパネルを開きました",
|
|
606
|
+
"status.ports_panel_refreshed": "転送ポートパネルを更新しました"
|
|
607
|
+
},
|
|
608
|
+
"ko": {
|
|
609
|
+
"cmd.show_info": "Dev Container: 정보 표시",
|
|
610
|
+
"cmd.show_info_desc": "Dev Container 설정을 정보 패널에 표시",
|
|
611
|
+
"cmd.open_config": "Dev Container: 설정 열기",
|
|
612
|
+
"cmd.open_config_desc": "편집기에서 devcontainer.json 열기",
|
|
613
|
+
"cmd.run_lifecycle": "Dev Container: 라이프사이클 명령 실행",
|
|
614
|
+
"cmd.run_lifecycle_desc": "devcontainer 라이프사이클 명령을 선택하여 실행",
|
|
615
|
+
"cmd.show_features": "Dev Container: Features 표시",
|
|
616
|
+
"cmd.show_features_desc": "설치된 Dev Container Features 목록",
|
|
617
|
+
"cmd.show_ports": "Dev Container: 포트 표시",
|
|
618
|
+
"cmd.show_ports_desc": "구성된 포트 포워딩 표시",
|
|
619
|
+
"cmd.rebuild": "Dev Container: 재빌드",
|
|
620
|
+
"cmd.rebuild_desc": "devcontainer CLI를 사용하여 Dev Container 재빌드",
|
|
621
|
+
"cmd.attach": "Dev Container: 연결",
|
|
622
|
+
"cmd.attach_desc": "Dev Container를 시작하고 파일 작업과 터미널을 컨테이너로 라우팅",
|
|
623
|
+
"cmd.detach": "Dev Container: 연결 해제",
|
|
624
|
+
"cmd.detach_desc": "Dev Container 라우팅을 중지하고 로컬 편집으로 복귀",
|
|
625
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features}개 feature, %{ports}개 포트",
|
|
626
|
+
"status.no_config": "devcontainer.json을 찾을 수 없습니다",
|
|
627
|
+
"status.panel_opened": "Dev Container 정보 패널이 열렸습니다",
|
|
628
|
+
"status.panel_closed": "Dev Container 정보 패널이 닫혔습니다",
|
|
629
|
+
"status.no_lifecycle": "라이프사이클 명령이 정의되지 않았습니다",
|
|
630
|
+
"status.no_features": "구성된 feature가 없습니다",
|
|
631
|
+
"status.no_ports": "구성된 포트가 없습니다",
|
|
632
|
+
"status.running": "%{name} 실행 중...",
|
|
633
|
+
"status.running_sub": "%{name} (%{label}) 실행 중...",
|
|
634
|
+
"status.completed": "%{name}이(가) 성공적으로 완료되었습니다",
|
|
635
|
+
"status.failed": "%{name} 실패 (종료 코드 %{code})",
|
|
636
|
+
"status.failed_sub": "%{name} (%{label}) 실패 (종료 코드 %{code})",
|
|
637
|
+
"status.cli_not_found": "devcontainer CLI를 찾을 수 없습니다. 설치: npm i -g @devcontainers/cli",
|
|
638
|
+
"status.copied_install": "복사됨: %{cmd}",
|
|
639
|
+
"status.rebuilding": "Dev Container 재빌드 중...",
|
|
640
|
+
"status.rebuild_done": "Dev Container 재빌드 완료",
|
|
641
|
+
"status.rebuild_failed": "재빌드 실패: %{error}",
|
|
642
|
+
"popup.cli_title": "Dev Container CLI를 찾을 수 없습니다",
|
|
643
|
+
"popup.cli_message": "재빌드에는 devcontainer CLI가 필요합니다. 설치 명령을 복사하거나 닫으세요.",
|
|
644
|
+
"popup.activate_open_config": "설정 열기",
|
|
645
|
+
"popup.attach_title": "Dev Container 감지됨",
|
|
646
|
+
"popup.attach_message": "Dev Container '%{name}'에 연결하시겠습니까? 파일 작업과 터미널이 컨테이너를 경유하도록 편집기가 다시 시작됩니다.",
|
|
647
|
+
"popup.attach_action_attach": "컨테이너에서 다시 열기",
|
|
648
|
+
"popup.attach_action_dismiss": "무시",
|
|
649
|
+
"prompt.run_lifecycle": "라이프사이클 명령 실행:",
|
|
650
|
+
"prompt.features": "Dev Container Features:",
|
|
651
|
+
"prompt.ports": "포워딩된 포트:",
|
|
652
|
+
"panel.header": "Dev Container: %{name}",
|
|
653
|
+
"panel.section_image": "이미지",
|
|
654
|
+
"panel.section_build": "빌드",
|
|
655
|
+
"panel.section_compose": "Docker Compose",
|
|
656
|
+
"panel.section_features": "Features",
|
|
657
|
+
"panel.section_ports": "포트",
|
|
658
|
+
"panel.section_env": "환경 변수",
|
|
659
|
+
"panel.section_mounts": "마운트",
|
|
660
|
+
"panel.section_users": "사용자",
|
|
661
|
+
"panel.section_lifecycle": "라이프사이클 명령",
|
|
662
|
+
"panel.section_host_req": "호스트 요구사항",
|
|
663
|
+
"panel.footer": "Tab: 전환 Enter: 실행 Alt+r: 라이프사이클 Alt+o: 설정 Alt+b: 재빌드 q: 닫기",
|
|
664
|
+
"cmd.scaffold_config": "Dev Container: 설정 만들기",
|
|
665
|
+
"cmd.scaffold_config_desc": "작업 공간에 최소한의 .devcontainer/devcontainer.json 생성",
|
|
666
|
+
"status.scaffold_already_exists": "Dev Container 설정이 이미 있습니다",
|
|
667
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json 생성됨",
|
|
668
|
+
"status.scaffold_failed": "Dev Container 설정 생성 실패",
|
|
669
|
+
"cmd.show_logs": "Dev Container: 로그 표시",
|
|
670
|
+
"cmd.show_logs_desc": "docker logs를 통해 연결된 컨테이너의 최근 stdout/stderr 표시",
|
|
671
|
+
"status.logs_require_container": "로그 표시에는 연결된 Dev Container가 필요합니다",
|
|
672
|
+
"status.logs_docker_missing": "호스트에서 docker CLI를 찾을 수 없습니다",
|
|
673
|
+
"status.logs_loading": "컨테이너 로그 불러오는 중...",
|
|
674
|
+
"status.logs_shown": "컨테이너 로그 표시됨",
|
|
675
|
+
"status.logs_empty": "(컨테이너가 출력을 생성하지 않음)",
|
|
676
|
+
"indicator.phase_initialize": "초기화 중",
|
|
677
|
+
"indicator.phase_build": "빌드 중",
|
|
678
|
+
"indicator.error_initialize": "initializeCommand 실패",
|
|
679
|
+
"status.rebuild_parse_failed": "devcontainer up 출력을 파싱할 수 없음",
|
|
680
|
+
"status.rebuild_missing_container_id": "containerId 누락",
|
|
681
|
+
"indicator.error_restart_recovery": "연결이 완료되지 않음",
|
|
682
|
+
"status.build_log_prepare_failed": "빌드 로그 파일을 준비할 수 없습니다",
|
|
683
|
+
"status.no_build_log": "아직 Dev Container 빌드 로그가 없습니다",
|
|
684
|
+
"status.build_log_missing": "빌드 로그 파일이 없거나 읽을 수 없습니다",
|
|
685
|
+
"status.cancel_nothing_in_flight": "진행 중인 Dev Container 연결이 없습니다",
|
|
686
|
+
"status.attach_cancelled": "Dev Container 연결이 취소되었습니다",
|
|
687
|
+
"cmd.show_build_logs": "Dev Container: 빌드 로그 보기",
|
|
688
|
+
"cmd.show_build_logs_desc": "최근 devcontainer up의 빌드 로그를 엽니다",
|
|
689
|
+
"cmd.cancel_attach": "Dev Container: 시작 취소",
|
|
690
|
+
"cmd.cancel_attach_desc": "진행 중인 Dev Container 연결을 중단합니다",
|
|
691
|
+
"popup.failed_attach_title": "Dev Container 연결 실패",
|
|
692
|
+
"popup.failed_attach_message": "Dev Container 연결에 실패했습니다: %{error}",
|
|
693
|
+
"popup.failed_attach_action_retry": "다시 시도",
|
|
694
|
+
"popup.failed_attach_action_show_logs": "빌드 로그 보기",
|
|
695
|
+
"popup.failed_attach_action_reopen_local": "로컬로 다시 열기",
|
|
696
|
+
"popup.failed_attach_action_dismiss": "닫기 (ESC)",
|
|
697
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: 포워딩 포트 보기",
|
|
698
|
+
"cmd.show_forwarded_ports_panel_desc": "구성된 포트와 런타임 바인딩을 나열하는 패널 열기",
|
|
699
|
+
"ports_panel.header": "포워딩 포트",
|
|
700
|
+
"ports_panel.col_configured": "구성됨",
|
|
701
|
+
"ports_panel.col_protocol": "프로토콜",
|
|
702
|
+
"ports_panel.col_label": "라벨",
|
|
703
|
+
"ports_panel.col_binding": "런타임 바인딩",
|
|
704
|
+
"ports_panel.no_ports": "표시할 포트가 없습니다.",
|
|
705
|
+
"ports_panel.footer": "r: 새로고침 q/Esc: 닫기",
|
|
706
|
+
"status.ports_panel_opened": "포워딩 포트 패널을 열었습니다",
|
|
707
|
+
"status.ports_panel_refreshed": "포워딩 포트 패널을 갱신했습니다"
|
|
708
|
+
},
|
|
709
|
+
"zh-CN": {
|
|
710
|
+
"cmd.show_info": "Dev Container: 显示信息",
|
|
711
|
+
"cmd.show_info_desc": "在信息面板中显示Dev Container配置",
|
|
712
|
+
"cmd.open_config": "Dev Container: 打开配置",
|
|
713
|
+
"cmd.open_config_desc": "在编辑器中打开devcontainer.json",
|
|
714
|
+
"cmd.run_lifecycle": "Dev Container: 运行生命周期命令",
|
|
715
|
+
"cmd.run_lifecycle_desc": "选择并运行devcontainer生命周期命令",
|
|
716
|
+
"cmd.show_features": "Dev Container: 显示Features",
|
|
717
|
+
"cmd.show_features_desc": "列出已安装的Dev Container Features",
|
|
718
|
+
"cmd.show_ports": "Dev Container: 显示端口",
|
|
719
|
+
"cmd.show_ports_desc": "显示已配置的端口转发",
|
|
720
|
+
"cmd.rebuild": "Dev Container: 重建",
|
|
721
|
+
"cmd.rebuild_desc": "使用devcontainer CLI重建Dev Container",
|
|
722
|
+
"cmd.attach": "Dev Container: 附加",
|
|
723
|
+
"cmd.attach_desc": "启动 Dev Container 并将文件操作和终端路由至其中",
|
|
724
|
+
"cmd.detach": "Dev Container: 分离",
|
|
725
|
+
"cmd.detach_desc": "停止通过 Dev Container 路由,返回本地编辑",
|
|
726
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features}个feature, %{ports}个端口",
|
|
727
|
+
"status.no_config": "未找到devcontainer.json",
|
|
728
|
+
"status.panel_opened": "Dev Container信息面板已打开",
|
|
729
|
+
"status.panel_closed": "Dev Container信息面板已关闭",
|
|
730
|
+
"status.no_lifecycle": "未定义生命周期命令",
|
|
731
|
+
"status.no_features": "未配置feature",
|
|
732
|
+
"status.no_ports": "未配置端口",
|
|
733
|
+
"status.running": "正在运行%{name}...",
|
|
734
|
+
"status.running_sub": "正在运行%{name} (%{label})...",
|
|
735
|
+
"status.completed": "%{name}成功完成",
|
|
736
|
+
"status.failed": "%{name}失败(退出码%{code})",
|
|
737
|
+
"status.failed_sub": "%{name} (%{label})失败(退出码%{code})",
|
|
738
|
+
"status.cli_not_found": "未找到devcontainer CLI。安装命令: npm i -g @devcontainers/cli",
|
|
739
|
+
"status.copied_install": "已复制: %{cmd}",
|
|
740
|
+
"status.rebuilding": "正在重建Dev Container...",
|
|
741
|
+
"status.rebuild_done": "Dev Container重建完成",
|
|
742
|
+
"status.rebuild_failed": "重建失败: %{error}",
|
|
743
|
+
"popup.cli_title": "未找到Dev Container CLI",
|
|
744
|
+
"popup.cli_message": "重建需要devcontainer CLI。复制下面的安装命令或关闭。",
|
|
745
|
+
"popup.activate_open_config": "打开配置",
|
|
746
|
+
"popup.attach_title": "检测到 Dev Container",
|
|
747
|
+
"popup.attach_message": "附加到 Dev Container '%{name}'?编辑器将重启,使文件操作和终端经由该容器运行。",
|
|
748
|
+
"popup.attach_action_attach": "在容器中重新打开",
|
|
749
|
+
"popup.attach_action_dismiss": "忽略",
|
|
750
|
+
"prompt.run_lifecycle": "运行生命周期命令:",
|
|
751
|
+
"prompt.features": "Dev Container Features:",
|
|
752
|
+
"prompt.ports": "转发端口:",
|
|
753
|
+
"panel.header": "Dev Container: %{name}",
|
|
754
|
+
"panel.section_image": "镜像",
|
|
755
|
+
"panel.section_build": "构建",
|
|
756
|
+
"panel.section_compose": "Docker Compose",
|
|
757
|
+
"panel.section_features": "Features",
|
|
758
|
+
"panel.section_ports": "端口",
|
|
759
|
+
"panel.section_env": "环境变量",
|
|
760
|
+
"panel.section_mounts": "挂载",
|
|
761
|
+
"panel.section_users": "用户",
|
|
762
|
+
"panel.section_lifecycle": "生命周期命令",
|
|
763
|
+
"panel.section_host_req": "主机要求",
|
|
764
|
+
"panel.footer": "Tab: 切换 Enter: 执行 Alt+r: 生命周期 Alt+o: 打开 Alt+b: 重建 q: 关闭",
|
|
765
|
+
"cmd.scaffold_config": "Dev Container: 创建配置",
|
|
766
|
+
"cmd.scaffold_config_desc": "在工作区中创建最小的 .devcontainer/devcontainer.json",
|
|
767
|
+
"status.scaffold_already_exists": "Dev Container 配置已存在",
|
|
768
|
+
"status.scaffold_created": "已创建 .devcontainer/devcontainer.json",
|
|
769
|
+
"status.scaffold_failed": "创建 Dev Container 配置失败",
|
|
770
|
+
"cmd.show_logs": "Dev Container: 显示日志",
|
|
771
|
+
"cmd.show_logs_desc": "通过 docker logs 显示已附加容器的近期 stdout/stderr",
|
|
772
|
+
"status.logs_require_container": "显示日志需要已附加的 Dev Container",
|
|
773
|
+
"status.logs_docker_missing": "主机上未找到 docker CLI",
|
|
774
|
+
"status.logs_loading": "正在加载容器日志...",
|
|
775
|
+
"status.logs_shown": "已显示容器日志",
|
|
776
|
+
"status.logs_empty": "(容器没有产生输出)",
|
|
777
|
+
"indicator.phase_initialize": "正在初始化",
|
|
778
|
+
"indicator.phase_build": "正在构建",
|
|
779
|
+
"indicator.error_initialize": "initializeCommand 失败",
|
|
780
|
+
"status.rebuild_parse_failed": "无法解析 devcontainer up 的输出",
|
|
781
|
+
"status.rebuild_missing_container_id": "缺少 containerId",
|
|
782
|
+
"indicator.error_restart_recovery": "附加未完成",
|
|
783
|
+
"status.build_log_prepare_failed": "无法准备构建日志文件",
|
|
784
|
+
"status.no_build_log": "尚无 Dev Container 构建日志",
|
|
785
|
+
"status.build_log_missing": "构建日志文件缺失或无法读取",
|
|
786
|
+
"status.cancel_nothing_in_flight": "当前没有进行中的 Dev Container 连接",
|
|
787
|
+
"status.attach_cancelled": "已取消 Dev Container 连接",
|
|
788
|
+
"cmd.show_build_logs": "Dev Container: 显示构建日志",
|
|
789
|
+
"cmd.show_build_logs_desc": "打开最近一次 devcontainer up 的构建日志",
|
|
790
|
+
"cmd.cancel_attach": "Dev Container: 取消启动",
|
|
791
|
+
"cmd.cancel_attach_desc": "中止进行中的 Dev Container 连接",
|
|
792
|
+
"popup.failed_attach_title": "连接到开发容器失败",
|
|
793
|
+
"popup.failed_attach_message": "连接到开发容器失败: %{error}",
|
|
794
|
+
"popup.failed_attach_action_retry": "重试",
|
|
795
|
+
"popup.failed_attach_action_show_logs": "查看构建日志",
|
|
796
|
+
"popup.failed_attach_action_reopen_local": "在本地重新打开",
|
|
797
|
+
"popup.failed_attach_action_dismiss": "关闭 (ESC)",
|
|
798
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: 显示转发端口",
|
|
799
|
+
"cmd.show_forwarded_ports_panel_desc": "打开面板列出已配置的端口以及容器运行时的绑定",
|
|
800
|
+
"ports_panel.header": "转发端口",
|
|
801
|
+
"ports_panel.col_configured": "已配置",
|
|
802
|
+
"ports_panel.col_protocol": "协议",
|
|
803
|
+
"ports_panel.col_label": "标签",
|
|
804
|
+
"ports_panel.col_binding": "运行时绑定",
|
|
805
|
+
"ports_panel.no_ports": "没有可显示的端口。",
|
|
806
|
+
"ports_panel.footer": "r: 刷新 q/Esc: 关闭",
|
|
807
|
+
"status.ports_panel_opened": "已打开转发端口面板",
|
|
808
|
+
"status.ports_panel_refreshed": "已刷新转发端口面板"
|
|
809
|
+
},
|
|
810
|
+
"it": {
|
|
811
|
+
"cmd.show_info": "Dev Container: Mostra info",
|
|
812
|
+
"cmd.show_info_desc": "Mostra la configurazione del dev container in un pannello informativo",
|
|
813
|
+
"cmd.open_config": "Dev Container: Apri configurazione",
|
|
814
|
+
"cmd.open_config_desc": "Apri devcontainer.json nell'editor",
|
|
815
|
+
"cmd.run_lifecycle": "Dev Container: Esegui comando lifecycle",
|
|
816
|
+
"cmd.run_lifecycle_desc": "Seleziona ed esegui un comando lifecycle del devcontainer",
|
|
817
|
+
"cmd.show_features": "Dev Container: Mostra features",
|
|
818
|
+
"cmd.show_features_desc": "Elenca le features installate del dev container",
|
|
819
|
+
"cmd.show_ports": "Dev Container: Mostra porte",
|
|
820
|
+
"cmd.show_ports_desc": "Mostra gli inoltri di porta configurati",
|
|
821
|
+
"cmd.rebuild": "Dev Container: Ricompila",
|
|
822
|
+
"cmd.rebuild_desc": "Ricompila il dev container usando il CLI devcontainer",
|
|
823
|
+
"cmd.attach": "Dev Container: Collega",
|
|
824
|
+
"cmd.attach_desc": "Avvia il dev container e instrada la modifica attraverso di esso",
|
|
825
|
+
"cmd.detach": "Dev Container: Scollega",
|
|
826
|
+
"cmd.detach_desc": "Interrompi l'instradamento tramite il dev container e torna alla modifica locale",
|
|
827
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} porte",
|
|
828
|
+
"status.no_config": "Nessun devcontainer.json trovato",
|
|
829
|
+
"status.panel_opened": "Pannello info Dev Container aperto",
|
|
830
|
+
"status.panel_closed": "Pannello info Dev Container chiuso",
|
|
831
|
+
"status.no_lifecycle": "Nessun comando lifecycle definito",
|
|
832
|
+
"status.no_features": "Nessuna feature configurata",
|
|
833
|
+
"status.no_ports": "Nessuna porta configurata",
|
|
834
|
+
"status.running": "Esecuzione di %{name}...",
|
|
835
|
+
"status.running_sub": "Esecuzione di %{name} (%{label})...",
|
|
836
|
+
"status.completed": "%{name} completato con successo",
|
|
837
|
+
"status.failed": "%{name} fallito (codice di uscita %{code})",
|
|
838
|
+
"status.failed_sub": "%{name} (%{label}) fallito (codice di uscita %{code})",
|
|
839
|
+
"status.cli_not_found": "CLI devcontainer non trovato. Installa con: npm i -g @devcontainers/cli",
|
|
840
|
+
"status.copied_install": "Copiato: %{cmd}",
|
|
841
|
+
"status.rebuilding": "Ricompilazione del dev container...",
|
|
842
|
+
"status.rebuild_done": "Ricompilazione del dev container completata",
|
|
843
|
+
"status.rebuild_failed": "Ricompilazione fallita: %{error}",
|
|
844
|
+
"popup.cli_title": "CLI Dev Container non trovato",
|
|
845
|
+
"popup.cli_message": "Il CLI devcontainer e necessario per la ricompilazione. Copia il comando di installazione sotto o chiudi.",
|
|
846
|
+
"popup.activate_open_config": "Apri configurazione",
|
|
847
|
+
"popup.attach_title": "Dev container rilevato",
|
|
848
|
+
"popup.attach_message": "Collegare il dev container '%{name}'? L'editor si riavviera affinche le operazioni sui file e i terminali passino per il container.",
|
|
849
|
+
"popup.attach_action_attach": "Riapri nel container",
|
|
850
|
+
"popup.attach_action_dismiss": "Ignora",
|
|
851
|
+
"prompt.run_lifecycle": "Esegui comando lifecycle:",
|
|
852
|
+
"prompt.features": "Features Dev Container:",
|
|
853
|
+
"prompt.ports": "Porte inoltrate:",
|
|
854
|
+
"panel.header": "Dev Container: %{name}",
|
|
855
|
+
"panel.section_image": "Immagine",
|
|
856
|
+
"panel.section_build": "Build",
|
|
857
|
+
"panel.section_compose": "Docker Compose",
|
|
858
|
+
"panel.section_features": "Features",
|
|
859
|
+
"panel.section_ports": "Porte",
|
|
860
|
+
"panel.section_env": "Variabili d'ambiente",
|
|
861
|
+
"panel.section_mounts": "Mount",
|
|
862
|
+
"panel.section_users": "Utenti",
|
|
863
|
+
"panel.section_lifecycle": "Comandi Lifecycle",
|
|
864
|
+
"panel.section_host_req": "Requisiti host",
|
|
865
|
+
"panel.footer": "Tab: cicla Enter: attiva Alt+r: lifecycle Alt+o: apri Alt+b: ricompila q: chiudi",
|
|
866
|
+
"cmd.scaffold_config": "Dev Container: Crea configurazione",
|
|
867
|
+
"cmd.scaffold_config_desc": "Crea un .devcontainer/devcontainer.json minimale nel workspace",
|
|
868
|
+
"status.scaffold_already_exists": "La configurazione Dev Container esiste già",
|
|
869
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json creato",
|
|
870
|
+
"status.scaffold_failed": "Creazione della configurazione Dev Container fallita",
|
|
871
|
+
"cmd.show_logs": "Dev Container: Mostra log",
|
|
872
|
+
"cmd.show_logs_desc": "Mostra lo stdout/stderr recente del container collegato tramite docker logs",
|
|
873
|
+
"status.logs_require_container": "Mostra log richiede un Dev Container collegato",
|
|
874
|
+
"status.logs_docker_missing": "CLI docker non trovato sull'host",
|
|
875
|
+
"status.logs_loading": "Caricamento log del container...",
|
|
876
|
+
"status.logs_shown": "Log del container mostrati",
|
|
877
|
+
"status.logs_empty": "(il container non ha prodotto output)",
|
|
878
|
+
"indicator.phase_initialize": "Inizializzazione",
|
|
879
|
+
"indicator.phase_build": "Compilazione",
|
|
880
|
+
"indicator.error_initialize": "initializeCommand fallito",
|
|
881
|
+
"status.rebuild_parse_failed": "impossibile analizzare l'output di devcontainer up",
|
|
882
|
+
"status.rebuild_missing_container_id": "containerId mancante",
|
|
883
|
+
"indicator.error_restart_recovery": "collegamento non completato",
|
|
884
|
+
"status.build_log_prepare_failed": "Impossibile preparare il file di log della build",
|
|
885
|
+
"status.no_build_log": "Nessun log di build del dev container disponibile",
|
|
886
|
+
"status.build_log_missing": "File di log della build mancante o illeggibile",
|
|
887
|
+
"status.cancel_nothing_in_flight": "Nessun collegamento al dev container in corso",
|
|
888
|
+
"status.attach_cancelled": "Collegamento al dev container annullato",
|
|
889
|
+
"cmd.show_build_logs": "Dev Container: Mostra log di build",
|
|
890
|
+
"cmd.show_build_logs_desc": "Apre il log dell'ultimo devcontainer up",
|
|
891
|
+
"cmd.cancel_attach": "Dev Container: Annulla avvio",
|
|
892
|
+
"cmd.cancel_attach_desc": "Interrompe un collegamento al dev container in corso",
|
|
893
|
+
"popup.failed_attach_title": "Connessione al dev container non riuscita",
|
|
894
|
+
"popup.failed_attach_message": "Connessione al dev container non riuscita: %{error}",
|
|
895
|
+
"popup.failed_attach_action_retry": "Riprova",
|
|
896
|
+
"popup.failed_attach_action_show_logs": "Mostra log di build",
|
|
897
|
+
"popup.failed_attach_action_reopen_local": "Riapri in locale",
|
|
898
|
+
"popup.failed_attach_action_dismiss": "Chiudi (ESC)",
|
|
899
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Mostra porte inoltrate",
|
|
900
|
+
"cmd.show_forwarded_ports_panel_desc": "Apri un pannello con le porte configurate e i binding a runtime del container",
|
|
901
|
+
"ports_panel.header": "Porte inoltrate",
|
|
902
|
+
"ports_panel.col_configured": "Configurata",
|
|
903
|
+
"ports_panel.col_protocol": "Protocollo",
|
|
904
|
+
"ports_panel.col_label": "Etichetta",
|
|
905
|
+
"ports_panel.col_binding": "Binding runtime",
|
|
906
|
+
"ports_panel.no_ports": "Nessuna porta configurata o attiva.",
|
|
907
|
+
"ports_panel.footer": "r: aggiorna q/Esc: chiudi",
|
|
908
|
+
"status.ports_panel_opened": "Pannello porte inoltrate aperto",
|
|
909
|
+
"status.ports_panel_refreshed": "Pannello porte inoltrate aggiornato"
|
|
910
|
+
},
|
|
911
|
+
"pt-BR": {
|
|
912
|
+
"cmd.show_info": "Dev Container: Mostrar informacoes",
|
|
913
|
+
"cmd.show_info_desc": "Mostrar a configuracao do dev container em um painel informativo",
|
|
914
|
+
"cmd.open_config": "Dev Container: Abrir configuracao",
|
|
915
|
+
"cmd.open_config_desc": "Abrir devcontainer.json no editor",
|
|
916
|
+
"cmd.run_lifecycle": "Dev Container: Executar comando lifecycle",
|
|
917
|
+
"cmd.run_lifecycle_desc": "Selecionar e executar um comando lifecycle do devcontainer",
|
|
918
|
+
"cmd.show_features": "Dev Container: Mostrar features",
|
|
919
|
+
"cmd.show_features_desc": "Listar features instaladas do dev container",
|
|
920
|
+
"cmd.show_ports": "Dev Container: Mostrar portas",
|
|
921
|
+
"cmd.show_ports_desc": "Mostrar encaminhamentos de porta configurados",
|
|
922
|
+
"cmd.rebuild": "Dev Container: Reconstruir",
|
|
923
|
+
"cmd.rebuild_desc": "Reconstruir o dev container usando o CLI devcontainer",
|
|
924
|
+
"cmd.attach": "Dev Container: Anexar",
|
|
925
|
+
"cmd.attach_desc": "Iniciar o dev container e rotear as operacoes de edicao por ele",
|
|
926
|
+
"cmd.detach": "Dev Container: Desanexar",
|
|
927
|
+
"cmd.detach_desc": "Parar de rotear pelo dev container e voltar a edicao local",
|
|
928
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} portas",
|
|
929
|
+
"status.no_config": "devcontainer.json nao encontrado",
|
|
930
|
+
"status.panel_opened": "Painel de informacoes do Dev Container aberto",
|
|
931
|
+
"status.panel_closed": "Painel de informacoes do Dev Container fechado",
|
|
932
|
+
"status.no_lifecycle": "Nenhum comando lifecycle definido",
|
|
933
|
+
"status.no_features": "Nenhuma feature configurada",
|
|
934
|
+
"status.no_ports": "Nenhuma porta configurada",
|
|
935
|
+
"status.running": "Executando %{name}...",
|
|
936
|
+
"status.running_sub": "Executando %{name} (%{label})...",
|
|
937
|
+
"status.completed": "%{name} concluido com sucesso",
|
|
938
|
+
"status.failed": "%{name} falhou (codigo de saida %{code})",
|
|
939
|
+
"status.failed_sub": "%{name} (%{label}) falhou (codigo de saida %{code})",
|
|
940
|
+
"status.cli_not_found": "CLI devcontainer nao encontrado. Instale com: npm i -g @devcontainers/cli",
|
|
941
|
+
"status.copied_install": "Copiado: %{cmd}",
|
|
942
|
+
"status.rebuilding": "Reconstruindo dev container...",
|
|
943
|
+
"status.rebuild_done": "Reconstrucao do dev container concluida",
|
|
944
|
+
"status.rebuild_failed": "Reconstrucao falhou: %{error}",
|
|
945
|
+
"popup.cli_title": "CLI Dev Container nao encontrado",
|
|
946
|
+
"popup.cli_message": "O CLI devcontainer e necessario para reconstrucao. Copie o comando de instalacao abaixo ou descarte.",
|
|
947
|
+
"popup.activate_open_config": "Abrir configuracao",
|
|
948
|
+
"popup.attach_title": "Dev container detectado",
|
|
949
|
+
"popup.attach_message": "Anexar ao dev container '%{name}'? O editor sera reiniciado para que as operacoes de arquivo e terminais passem pelo container.",
|
|
950
|
+
"popup.attach_action_attach": "Reabrir no contêiner",
|
|
951
|
+
"popup.attach_action_dismiss": "Ignorar",
|
|
952
|
+
"prompt.run_lifecycle": "Executar comando lifecycle:",
|
|
953
|
+
"prompt.features": "Features do Dev Container:",
|
|
954
|
+
"prompt.ports": "Portas encaminhadas:",
|
|
955
|
+
"panel.header": "Dev Container: %{name}",
|
|
956
|
+
"panel.section_image": "Imagem",
|
|
957
|
+
"panel.section_build": "Build",
|
|
958
|
+
"panel.section_compose": "Docker Compose",
|
|
959
|
+
"panel.section_features": "Features",
|
|
960
|
+
"panel.section_ports": "Portas",
|
|
961
|
+
"panel.section_env": "Variaveis de ambiente",
|
|
962
|
+
"panel.section_mounts": "Montagens",
|
|
963
|
+
"panel.section_users": "Usuarios",
|
|
964
|
+
"panel.section_lifecycle": "Comandos Lifecycle",
|
|
965
|
+
"panel.section_host_req": "Requisitos do host",
|
|
966
|
+
"panel.footer": "Tab: ciclar Enter: ativar Alt+r: lifecycle Alt+o: abrir Alt+b: reconstruir q: fechar",
|
|
967
|
+
"cmd.scaffold_config": "Dev Container: Criar configuração",
|
|
968
|
+
"cmd.scaffold_config_desc": "Criar um .devcontainer/devcontainer.json mínimo no workspace",
|
|
969
|
+
"status.scaffold_already_exists": "Configuração do Dev Container já existe",
|
|
970
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json criado",
|
|
971
|
+
"status.scaffold_failed": "Falha ao criar configuração do Dev Container",
|
|
972
|
+
"cmd.show_logs": "Dev Container: Mostrar logs",
|
|
973
|
+
"cmd.show_logs_desc": "Mostrar stdout/stderr recente do contêiner anexado via docker logs",
|
|
974
|
+
"status.logs_require_container": "Mostrar logs requer um Dev Container anexado",
|
|
975
|
+
"status.logs_docker_missing": "CLI docker não encontrado no host",
|
|
976
|
+
"status.logs_loading": "Carregando logs do contêiner...",
|
|
977
|
+
"status.logs_shown": "Logs do contêiner exibidos",
|
|
978
|
+
"status.logs_empty": "(o contêiner não produziu saída)",
|
|
979
|
+
"indicator.phase_initialize": "Inicializando",
|
|
980
|
+
"indicator.phase_build": "Construindo",
|
|
981
|
+
"indicator.error_initialize": "initializeCommand falhou",
|
|
982
|
+
"status.rebuild_parse_failed": "não foi possível analisar a saída do devcontainer up",
|
|
983
|
+
"status.rebuild_missing_container_id": "containerId ausente",
|
|
984
|
+
"indicator.error_restart_recovery": "conexão não concluída",
|
|
985
|
+
"status.build_log_prepare_failed": "Não foi possível preparar o arquivo de log de build",
|
|
986
|
+
"status.no_build_log": "Ainda não há log de build do dev container",
|
|
987
|
+
"status.build_log_missing": "Arquivo de log de build ausente ou ilegível",
|
|
988
|
+
"status.cancel_nothing_in_flight": "Nenhuma conexão de dev container em andamento",
|
|
989
|
+
"status.attach_cancelled": "Conexão de dev container cancelada",
|
|
990
|
+
"cmd.show_build_logs": "Dev Container: Mostrar logs de build",
|
|
991
|
+
"cmd.show_build_logs_desc": "Abre o log do último devcontainer up",
|
|
992
|
+
"cmd.cancel_attach": "Dev Container: Cancelar inicialização",
|
|
993
|
+
"cmd.cancel_attach_desc": "Aborta uma conexão de dev container em andamento",
|
|
994
|
+
"popup.failed_attach_title": "Falha ao anexar ao dev container",
|
|
995
|
+
"popup.failed_attach_message": "Falha ao anexar ao dev container: %{error}",
|
|
996
|
+
"popup.failed_attach_action_retry": "Tentar novamente",
|
|
997
|
+
"popup.failed_attach_action_show_logs": "Mostrar logs de build",
|
|
998
|
+
"popup.failed_attach_action_reopen_local": "Reabrir localmente",
|
|
999
|
+
"popup.failed_attach_action_dismiss": "Descartar (ESC)",
|
|
1000
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Mostrar portas encaminhadas",
|
|
1001
|
+
"cmd.show_forwarded_ports_panel_desc": "Abrir painel listando portas configuradas e vínculos em tempo de execução do container",
|
|
1002
|
+
"ports_panel.header": "Portas encaminhadas",
|
|
1003
|
+
"ports_panel.col_configured": "Configurada",
|
|
1004
|
+
"ports_panel.col_protocol": "Protocolo",
|
|
1005
|
+
"ports_panel.col_label": "Rótulo",
|
|
1006
|
+
"ports_panel.col_binding": "Vínculo em execução",
|
|
1007
|
+
"ports_panel.no_ports": "Nenhuma porta configurada ou em execução.",
|
|
1008
|
+
"ports_panel.footer": "r: atualizar q/Esc: fechar",
|
|
1009
|
+
"status.ports_panel_opened": "Painel de portas encaminhadas aberto",
|
|
1010
|
+
"status.ports_panel_refreshed": "Painel de portas encaminhadas atualizado"
|
|
1011
|
+
},
|
|
1012
|
+
"ru": {
|
|
1013
|
+
"cmd.show_info": "Dev Container: Показать информацию",
|
|
1014
|
+
"cmd.show_info_desc": "Показать конфигурацию dev container в информационной панели",
|
|
1015
|
+
"cmd.open_config": "Dev Container: Открыть конфигурацию",
|
|
1016
|
+
"cmd.open_config_desc": "Открыть devcontainer.json в редакторе",
|
|
1017
|
+
"cmd.run_lifecycle": "Dev Container: Выполнить lifecycle-команду",
|
|
1018
|
+
"cmd.run_lifecycle_desc": "Выбрать и выполнить lifecycle-команду devcontainer",
|
|
1019
|
+
"cmd.show_features": "Dev Container: Показать features",
|
|
1020
|
+
"cmd.show_features_desc": "Показать установленные features dev container",
|
|
1021
|
+
"cmd.show_ports": "Dev Container: Показать порты",
|
|
1022
|
+
"cmd.show_ports_desc": "Показать настроенные перенаправления портов",
|
|
1023
|
+
"cmd.rebuild": "Dev Container: Пересобрать",
|
|
1024
|
+
"cmd.rebuild_desc": "Пересобрать dev container с помощью devcontainer CLI",
|
|
1025
|
+
"cmd.attach": "Dev Container: Подключить",
|
|
1026
|
+
"cmd.attach_desc": "Запустить dev container и направить операции редактирования через него",
|
|
1027
|
+
"cmd.detach": "Dev Container: Отключить",
|
|
1028
|
+
"cmd.detach_desc": "Прекратить маршрутизацию через dev container и вернуться к локальному редактированию",
|
|
1029
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} портов",
|
|
1030
|
+
"status.no_config": "devcontainer.json не найден",
|
|
1031
|
+
"status.panel_opened": "Информационная панель Dev Container открыта",
|
|
1032
|
+
"status.panel_closed": "Информационная панель Dev Container закрыта",
|
|
1033
|
+
"status.no_lifecycle": "Lifecycle-команды не определены",
|
|
1034
|
+
"status.no_features": "Features не настроены",
|
|
1035
|
+
"status.no_ports": "Порты не настроены",
|
|
1036
|
+
"status.running": "Выполняется %{name}...",
|
|
1037
|
+
"status.running_sub": "Выполняется %{name} (%{label})...",
|
|
1038
|
+
"status.completed": "%{name} успешно завершено",
|
|
1039
|
+
"status.failed": "%{name} завершилось с ошибкой (код выхода %{code})",
|
|
1040
|
+
"status.failed_sub": "%{name} (%{label}) завершилось с ошибкой (код выхода %{code})",
|
|
1041
|
+
"status.cli_not_found": "devcontainer CLI не найден. Установите: npm i -g @devcontainers/cli",
|
|
1042
|
+
"status.copied_install": "Скопировано: %{cmd}",
|
|
1043
|
+
"status.rebuilding": "Пересборка dev container...",
|
|
1044
|
+
"status.rebuild_done": "Пересборка dev container завершена",
|
|
1045
|
+
"status.rebuild_failed": "Пересборка не удалась: %{error}",
|
|
1046
|
+
"popup.cli_title": "devcontainer CLI не найден",
|
|
1047
|
+
"popup.cli_message": "devcontainer CLI требуется для пересборки. Скопируйте команду установки ниже или закройте.",
|
|
1048
|
+
"popup.activate_open_config": "Открыть конфигурацию",
|
|
1049
|
+
"popup.attach_title": "Обнаружен dev container",
|
|
1050
|
+
"popup.attach_message": "Подключиться к dev container '%{name}'? Редактор перезапустится, чтобы файловые операции и терминалы шли через контейнер.",
|
|
1051
|
+
"popup.attach_action_attach": "Открыть заново в контейнере",
|
|
1052
|
+
"popup.attach_action_dismiss": "Игнорировать",
|
|
1053
|
+
"prompt.run_lifecycle": "Выполнить lifecycle-команду:",
|
|
1054
|
+
"prompt.features": "Features Dev Container:",
|
|
1055
|
+
"prompt.ports": "Перенаправленные порты:",
|
|
1056
|
+
"panel.header": "Dev Container: %{name}",
|
|
1057
|
+
"panel.section_image": "Образ",
|
|
1058
|
+
"panel.section_build": "Сборка",
|
|
1059
|
+
"panel.section_compose": "Docker Compose",
|
|
1060
|
+
"panel.section_features": "Features",
|
|
1061
|
+
"panel.section_ports": "Порты",
|
|
1062
|
+
"panel.section_env": "Переменные окружения",
|
|
1063
|
+
"panel.section_mounts": "Монтирования",
|
|
1064
|
+
"panel.section_users": "Пользователи",
|
|
1065
|
+
"panel.section_lifecycle": "Lifecycle-команды",
|
|
1066
|
+
"panel.section_host_req": "Требования к хосту",
|
|
1067
|
+
"panel.footer": "Tab: цикл Enter: активировать Alt+r: lifecycle Alt+o: открыть Alt+b: пересобрать q: закрыть",
|
|
1068
|
+
"cmd.scaffold_config": "Dev Container: Создать конфигурацию",
|
|
1069
|
+
"cmd.scaffold_config_desc": "Создать минимальный .devcontainer/devcontainer.json в рабочей области",
|
|
1070
|
+
"status.scaffold_already_exists": "Конфигурация Dev Container уже существует",
|
|
1071
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json создан",
|
|
1072
|
+
"status.scaffold_failed": "Не удалось создать конфигурацию Dev Container",
|
|
1073
|
+
"cmd.show_logs": "Dev Container: Показать логи",
|
|
1074
|
+
"cmd.show_logs_desc": "Показать последние stdout/stderr подключённого контейнера через docker logs",
|
|
1075
|
+
"status.logs_require_container": "Для показа логов требуется подключённый Dev Container",
|
|
1076
|
+
"status.logs_docker_missing": "CLI docker не найден на хосте",
|
|
1077
|
+
"status.logs_loading": "Загрузка логов контейнера...",
|
|
1078
|
+
"status.logs_shown": "Логи контейнера показаны",
|
|
1079
|
+
"status.logs_empty": "(контейнер не произвёл вывода)",
|
|
1080
|
+
"indicator.phase_initialize": "Инициализация",
|
|
1081
|
+
"indicator.phase_build": "Сборка",
|
|
1082
|
+
"indicator.error_initialize": "initializeCommand завершился с ошибкой",
|
|
1083
|
+
"status.rebuild_parse_failed": "не удалось разобрать вывод devcontainer up",
|
|
1084
|
+
"status.rebuild_missing_container_id": "отсутствует containerId",
|
|
1085
|
+
"indicator.error_restart_recovery": "подключение не завершилось",
|
|
1086
|
+
"status.build_log_prepare_failed": "Не удалось подготовить файл журнала сборки",
|
|
1087
|
+
"status.no_build_log": "Журнал сборки dev container пока отсутствует",
|
|
1088
|
+
"status.build_log_missing": "Файл журнала сборки отсутствует или не читается",
|
|
1089
|
+
"status.cancel_nothing_in_flight": "Нет выполняемого подключения dev container",
|
|
1090
|
+
"status.attach_cancelled": "Подключение dev container отменено",
|
|
1091
|
+
"cmd.show_build_logs": "Dev Container: Показать журнал сборки",
|
|
1092
|
+
"cmd.show_build_logs_desc": "Открывает журнал последнего devcontainer up",
|
|
1093
|
+
"cmd.cancel_attach": "Dev Container: Отменить запуск",
|
|
1094
|
+
"cmd.cancel_attach_desc": "Прерывает выполняющееся подключение dev container",
|
|
1095
|
+
"popup.failed_attach_title": "Ошибка подключения к dev container",
|
|
1096
|
+
"popup.failed_attach_message": "Ошибка подключения к dev container: %{error}",
|
|
1097
|
+
"popup.failed_attach_action_retry": "Повторить",
|
|
1098
|
+
"popup.failed_attach_action_show_logs": "Показать логи сборки",
|
|
1099
|
+
"popup.failed_attach_action_reopen_local": "Открыть локально",
|
|
1100
|
+
"popup.failed_attach_action_dismiss": "Закрыть (ESC)",
|
|
1101
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Показать перенаправленные порты",
|
|
1102
|
+
"cmd.show_forwarded_ports_panel_desc": "Открыть панель со списком настроенных и активных портов контейнера",
|
|
1103
|
+
"ports_panel.header": "Перенаправленные порты",
|
|
1104
|
+
"ports_panel.col_configured": "Настроено",
|
|
1105
|
+
"ports_panel.col_protocol": "Протокол",
|
|
1106
|
+
"ports_panel.col_label": "Метка",
|
|
1107
|
+
"ports_panel.col_binding": "Активная привязка",
|
|
1108
|
+
"ports_panel.no_ports": "Нет портов для отображения.",
|
|
1109
|
+
"ports_panel.footer": "r: обновить q/Esc: закрыть",
|
|
1110
|
+
"status.ports_panel_opened": "Панель перенаправленных портов открыта",
|
|
1111
|
+
"status.ports_panel_refreshed": "Панель перенаправленных портов обновлена"
|
|
1112
|
+
},
|
|
1113
|
+
"th": {
|
|
1114
|
+
"cmd.show_info": "Dev Container: แสดงข้อมูล",
|
|
1115
|
+
"cmd.show_info_desc": "แสดงการตั้งค่า dev container ในแผงข้อมูล",
|
|
1116
|
+
"cmd.open_config": "Dev Container: เปิดการตั้งค่า",
|
|
1117
|
+
"cmd.open_config_desc": "เปิด devcontainer.json ในตัวแก้ไข",
|
|
1118
|
+
"cmd.run_lifecycle": "Dev Container: เรียกใช้คำสั่ง lifecycle",
|
|
1119
|
+
"cmd.run_lifecycle_desc": "เลือกและเรียกใช้คำสั่ง lifecycle ของ devcontainer",
|
|
1120
|
+
"cmd.show_features": "Dev Container: แสดง features",
|
|
1121
|
+
"cmd.show_features_desc": "แสดงรายการ features ของ dev container ที่ติดตั้งแล้ว",
|
|
1122
|
+
"cmd.show_ports": "Dev Container: แสดงพอร์ต",
|
|
1123
|
+
"cmd.show_ports_desc": "แสดงการส่งต่อพอร์ตที่กำหนดค่าไว้",
|
|
1124
|
+
"cmd.rebuild": "Dev Container: สร้างใหม่",
|
|
1125
|
+
"cmd.rebuild_desc": "สร้าง dev container ใหม่โดยใช้ devcontainer CLI",
|
|
1126
|
+
"cmd.attach": "Dev Container: เชื่อมต่อ",
|
|
1127
|
+
"cmd.attach_desc": "เริ่มต้น dev container และกำหนดเส้นทางการแก้ไขผ่านคอนเทนเนอร์",
|
|
1128
|
+
"cmd.detach": "Dev Container: ยกเลิกการเชื่อมต่อ",
|
|
1129
|
+
"cmd.detach_desc": "หยุดกำหนดเส้นทางผ่าน dev container และกลับสู่การแก้ไขในเครื่อง",
|
|
1130
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} พอร์ต",
|
|
1131
|
+
"status.no_config": "ไม่พบ devcontainer.json",
|
|
1132
|
+
"status.panel_opened": "เปิดแผงข้อมูล Dev Container แล้ว",
|
|
1133
|
+
"status.panel_closed": "ปิดแผงข้อมูล Dev Container แล้ว",
|
|
1134
|
+
"status.no_lifecycle": "ไม่ได้กำหนดคำสั่ง lifecycle",
|
|
1135
|
+
"status.no_features": "ไม่ได้กำหนดค่า features",
|
|
1136
|
+
"status.no_ports": "ไม่ได้กำหนดค่าพอร์ต",
|
|
1137
|
+
"status.running": "กำลังเรียกใช้ %{name}...",
|
|
1138
|
+
"status.running_sub": "กำลังเรียกใช้ %{name} (%{label})...",
|
|
1139
|
+
"status.completed": "%{name} เสร็จสมบูรณ์",
|
|
1140
|
+
"status.failed": "%{name} ล้มเหลว (รหัสออก %{code})",
|
|
1141
|
+
"status.failed_sub": "%{name} (%{label}) ล้มเหลว (รหัสออก %{code})",
|
|
1142
|
+
"status.cli_not_found": "ไม่พบ devcontainer CLI ติดตั้งด้วย: npm i -g @devcontainers/cli",
|
|
1143
|
+
"status.copied_install": "คัดลอกแล้ว: %{cmd}",
|
|
1144
|
+
"status.rebuilding": "กำลังสร้าง dev container ใหม่...",
|
|
1145
|
+
"status.rebuild_done": "การสร้าง dev container ใหม่เสร็จสมบูรณ์",
|
|
1146
|
+
"status.rebuild_failed": "การสร้างใหม่ล้มเหลว: %{error}",
|
|
1147
|
+
"popup.cli_title": "ไม่พบ Dev Container CLI",
|
|
1148
|
+
"popup.cli_message": "จำเป็นต้องใช้ devcontainer CLI สำหรับการสร้างใหม่ คัดลอกคำสั่งติดตั้งด้านล่างหรือปิด",
|
|
1149
|
+
"popup.activate_open_config": "เปิดการตั้งค่า",
|
|
1150
|
+
"popup.attach_title": "พบ Dev Container",
|
|
1151
|
+
"popup.attach_message": "เชื่อมต่อกับ dev container '%{name}' หรือไม่? ตัวแก้ไขจะรีสตาร์ทเพื่อให้ I/O ของไฟล์และเทอร์มินัลผ่านคอนเทนเนอร์",
|
|
1152
|
+
"popup.attach_action_attach": "เปิดในคอนเทนเนอร์อีกครั้ง",
|
|
1153
|
+
"popup.attach_action_dismiss": "ละเว้น",
|
|
1154
|
+
"prompt.run_lifecycle": "เรียกใช้คำสั่ง lifecycle:",
|
|
1155
|
+
"prompt.features": "Features Dev Container:",
|
|
1156
|
+
"prompt.ports": "พอร์ตที่ส่งต่อ:",
|
|
1157
|
+
"panel.header": "Dev Container: %{name}",
|
|
1158
|
+
"panel.section_image": "อิมเมจ",
|
|
1159
|
+
"panel.section_build": "บิลด์",
|
|
1160
|
+
"panel.section_compose": "Docker Compose",
|
|
1161
|
+
"panel.section_features": "Features",
|
|
1162
|
+
"panel.section_ports": "พอร์ต",
|
|
1163
|
+
"panel.section_env": "ตัวแปรสภาพแวดล้อม",
|
|
1164
|
+
"panel.section_mounts": "การเมานต์",
|
|
1165
|
+
"panel.section_users": "ผู้ใช้",
|
|
1166
|
+
"panel.section_lifecycle": "คำสั่ง Lifecycle",
|
|
1167
|
+
"panel.section_host_req": "ข้อกำหนดโฮสต์",
|
|
1168
|
+
"panel.footer": "Tab: สลับ Enter: เปิดใช้งาน Alt+r: lifecycle Alt+o: เปิด Alt+b: สร้างใหม่ q: ปิด",
|
|
1169
|
+
"cmd.scaffold_config": "Dev Container: สร้างการตั้งค่า",
|
|
1170
|
+
"cmd.scaffold_config_desc": "สร้าง .devcontainer/devcontainer.json ขั้นต่ำในเวิร์กสเปซ",
|
|
1171
|
+
"status.scaffold_already_exists": "การตั้งค่า Dev Container มีอยู่แล้ว",
|
|
1172
|
+
"status.scaffold_created": "สร้าง .devcontainer/devcontainer.json แล้ว",
|
|
1173
|
+
"status.scaffold_failed": "สร้างการตั้งค่า Dev Container ไม่สำเร็จ",
|
|
1174
|
+
"cmd.show_logs": "Dev Container: แสดงล็อก",
|
|
1175
|
+
"cmd.show_logs_desc": "แสดง stdout/stderr ล่าสุดของคอนเทนเนอร์ที่แนบผ่าน docker logs",
|
|
1176
|
+
"status.logs_require_container": "การแสดงล็อกต้องการ Dev Container ที่แนบอยู่",
|
|
1177
|
+
"status.logs_docker_missing": "ไม่พบ CLI docker บนโฮสต์",
|
|
1178
|
+
"status.logs_loading": "กำลังโหลดล็อกคอนเทนเนอร์...",
|
|
1179
|
+
"status.logs_shown": "แสดงล็อกคอนเทนเนอร์แล้ว",
|
|
1180
|
+
"status.logs_empty": "(คอนเทนเนอร์ไม่ได้สร้างเอาต์พุต)",
|
|
1181
|
+
"indicator.phase_initialize": "กำลังเริ่มต้น",
|
|
1182
|
+
"indicator.phase_build": "กำลังสร้าง",
|
|
1183
|
+
"indicator.error_initialize": "initializeCommand ล้มเหลว",
|
|
1184
|
+
"status.rebuild_parse_failed": "ไม่สามารถแยกวิเคราะห์เอาต์พุตของ devcontainer up",
|
|
1185
|
+
"status.rebuild_missing_container_id": "ขาด containerId",
|
|
1186
|
+
"indicator.error_restart_recovery": "การเชื่อมต่อไม่สำเร็จ",
|
|
1187
|
+
"status.build_log_prepare_failed": "ไม่สามารถเตรียมไฟล์บันทึกการสร้าง",
|
|
1188
|
+
"status.no_build_log": "ยังไม่มีบันทึกการสร้าง Dev Container",
|
|
1189
|
+
"status.build_log_missing": "ไฟล์บันทึกการสร้างหายไปหรืออ่านไม่ได้",
|
|
1190
|
+
"status.cancel_nothing_in_flight": "ไม่มีการเชื่อมต่อ Dev Container ที่กำลังดำเนินการ",
|
|
1191
|
+
"status.attach_cancelled": "ยกเลิกการเชื่อมต่อ Dev Container แล้ว",
|
|
1192
|
+
"cmd.show_build_logs": "Dev Container: แสดงบันทึกการสร้าง",
|
|
1193
|
+
"cmd.show_build_logs_desc": "เปิดบันทึกการสร้าง devcontainer up ล่าสุด",
|
|
1194
|
+
"cmd.cancel_attach": "Dev Container: ยกเลิกการเริ่มต้น",
|
|
1195
|
+
"cmd.cancel_attach_desc": "ยกเลิกการเชื่อมต่อ Dev Container ที่กำลังดำเนินการ",
|
|
1196
|
+
"popup.failed_attach_title": "เชื่อมต่อ Dev Container ไม่สำเร็จ",
|
|
1197
|
+
"popup.failed_attach_message": "เชื่อมต่อ Dev Container ไม่สำเร็จ: %{error}",
|
|
1198
|
+
"popup.failed_attach_action_retry": "ลองอีกครั้ง",
|
|
1199
|
+
"popup.failed_attach_action_show_logs": "แสดงบันทึกการสร้าง",
|
|
1200
|
+
"popup.failed_attach_action_reopen_local": "เปิดใหม่ในเครื่อง",
|
|
1201
|
+
"popup.failed_attach_action_dismiss": "ปิด (ESC)",
|
|
1202
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: แสดงพอร์ตที่ส่งต่อ",
|
|
1203
|
+
"cmd.show_forwarded_ports_panel_desc": "เปิดแผงแสดงพอร์ตที่ตั้งค่าและผูกในเวลาทำงานของคอนเทนเนอร์",
|
|
1204
|
+
"ports_panel.header": "พอร์ตที่ส่งต่อ",
|
|
1205
|
+
"ports_panel.col_configured": "ตั้งค่าไว้",
|
|
1206
|
+
"ports_panel.col_protocol": "โปรโตคอล",
|
|
1207
|
+
"ports_panel.col_label": "ป้ายชื่อ",
|
|
1208
|
+
"ports_panel.col_binding": "การผูกขณะทำงาน",
|
|
1209
|
+
"ports_panel.no_ports": "ไม่มีพอร์ตให้แสดง",
|
|
1210
|
+
"ports_panel.footer": "r: รีเฟรช q/Esc: ปิด",
|
|
1211
|
+
"status.ports_panel_opened": "เปิดแผงพอร์ตที่ส่งต่อแล้ว",
|
|
1212
|
+
"status.ports_panel_refreshed": "รีเฟรชแผงพอร์ตที่ส่งต่อแล้ว"
|
|
1213
|
+
},
|
|
1214
|
+
"uk": {
|
|
1215
|
+
"cmd.show_info": "Dev Container: Показати інформацію",
|
|
1216
|
+
"cmd.show_info_desc": "Показати конфігурацію dev container в інформаційній панелі",
|
|
1217
|
+
"cmd.open_config": "Dev Container: Відкрити конфігурацію",
|
|
1218
|
+
"cmd.open_config_desc": "Відкрити devcontainer.json у редакторі",
|
|
1219
|
+
"cmd.run_lifecycle": "Dev Container: Виконати lifecycle-команду",
|
|
1220
|
+
"cmd.run_lifecycle_desc": "Обрати та виконати lifecycle-команду devcontainer",
|
|
1221
|
+
"cmd.show_features": "Dev Container: Показати features",
|
|
1222
|
+
"cmd.show_features_desc": "Показати встановлені features dev container",
|
|
1223
|
+
"cmd.show_ports": "Dev Container: Показати порти",
|
|
1224
|
+
"cmd.show_ports_desc": "Показати налаштовані перенаправлення портів",
|
|
1225
|
+
"cmd.rebuild": "Dev Container: Перебудувати",
|
|
1226
|
+
"cmd.rebuild_desc": "Перебудувати dev container за допомогою devcontainer CLI",
|
|
1227
|
+
"cmd.attach": "Dev Container: Підключити",
|
|
1228
|
+
"cmd.attach_desc": "Запустити dev container і спрямувати операції редагування через нього",
|
|
1229
|
+
"cmd.detach": "Dev Container: Від'єднати",
|
|
1230
|
+
"cmd.detach_desc": "Припинити маршрутизацію через dev container і повернутися до локального редагування",
|
|
1231
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} портів",
|
|
1232
|
+
"status.no_config": "devcontainer.json не знайдено",
|
|
1233
|
+
"status.panel_opened": "Інформаційна панель Dev Container відкрита",
|
|
1234
|
+
"status.panel_closed": "Інформаційна панель Dev Container закрита",
|
|
1235
|
+
"status.no_lifecycle": "Lifecycle-команди не визначені",
|
|
1236
|
+
"status.no_features": "Features не налаштовані",
|
|
1237
|
+
"status.no_ports": "Порти не налаштовані",
|
|
1238
|
+
"status.running": "Виконується %{name}...",
|
|
1239
|
+
"status.running_sub": "Виконується %{name} (%{label})...",
|
|
1240
|
+
"status.completed": "%{name} успішно завершено",
|
|
1241
|
+
"status.failed": "%{name} завершилося з помилкою (код виходу %{code})",
|
|
1242
|
+
"status.failed_sub": "%{name} (%{label}) завершилося з помилкою (код виходу %{code})",
|
|
1243
|
+
"status.cli_not_found": "devcontainer CLI не знайдено. Встановіть: npm i -g @devcontainers/cli",
|
|
1244
|
+
"status.copied_install": "Скопійовано: %{cmd}",
|
|
1245
|
+
"status.rebuilding": "Перебудова dev container...",
|
|
1246
|
+
"status.rebuild_done": "Перебудова dev container завершена",
|
|
1247
|
+
"status.rebuild_failed": "Перебудова не вдалася: %{error}",
|
|
1248
|
+
"popup.cli_title": "devcontainer CLI не знайдено",
|
|
1249
|
+
"popup.cli_message": "devcontainer CLI потрібен для перебудови. Скопіюйте команду встановлення нижче або закрийте.",
|
|
1250
|
+
"popup.activate_open_config": "Відкрити конфігурацію",
|
|
1251
|
+
"popup.attach_title": "Виявлено dev container",
|
|
1252
|
+
"popup.attach_message": "Підключитися до dev container '%{name}'? Редактор перезапуститься, щоб файлові операції та термінали проходили через контейнер.",
|
|
1253
|
+
"popup.attach_action_attach": "Відкрити знову в контейнері",
|
|
1254
|
+
"popup.attach_action_dismiss": "Ігнорувати",
|
|
1255
|
+
"prompt.run_lifecycle": "Виконати lifecycle-команду:",
|
|
1256
|
+
"prompt.features": "Features Dev Container:",
|
|
1257
|
+
"prompt.ports": "Перенаправлені порти:",
|
|
1258
|
+
"panel.header": "Dev Container: %{name}",
|
|
1259
|
+
"panel.section_image": "Образ",
|
|
1260
|
+
"panel.section_build": "Збірка",
|
|
1261
|
+
"panel.section_compose": "Docker Compose",
|
|
1262
|
+
"panel.section_features": "Features",
|
|
1263
|
+
"panel.section_ports": "Порти",
|
|
1264
|
+
"panel.section_env": "Змінні середовища",
|
|
1265
|
+
"panel.section_mounts": "Монтування",
|
|
1266
|
+
"panel.section_users": "Користувачі",
|
|
1267
|
+
"panel.section_lifecycle": "Lifecycle-команди",
|
|
1268
|
+
"panel.section_host_req": "Вимоги до хоста",
|
|
1269
|
+
"panel.footer": "Tab: цикл Enter: активувати Alt+r: lifecycle Alt+o: відкрити Alt+b: перебудувати q: закрити",
|
|
1270
|
+
"cmd.scaffold_config": "Dev Container: Створити конфігурацію",
|
|
1271
|
+
"cmd.scaffold_config_desc": "Створити мінімальний .devcontainer/devcontainer.json у робочій області",
|
|
1272
|
+
"status.scaffold_already_exists": "Конфігурація Dev Container вже існує",
|
|
1273
|
+
"status.scaffold_created": ".devcontainer/devcontainer.json створено",
|
|
1274
|
+
"status.scaffold_failed": "Не вдалося створити конфігурацію Dev Container",
|
|
1275
|
+
"cmd.show_logs": "Dev Container: Показати логи",
|
|
1276
|
+
"cmd.show_logs_desc": "Показати останні stdout/stderr підключеного контейнера через docker logs",
|
|
1277
|
+
"status.logs_require_container": "Для показу логів потрібен підключений Dev Container",
|
|
1278
|
+
"status.logs_docker_missing": "CLI docker не знайдено на хості",
|
|
1279
|
+
"status.logs_loading": "Завантаження логів контейнера...",
|
|
1280
|
+
"status.logs_shown": "Логи контейнера показано",
|
|
1281
|
+
"status.logs_empty": "(контейнер не створив вивід)",
|
|
1282
|
+
"indicator.phase_initialize": "Ініціалізація",
|
|
1283
|
+
"indicator.phase_build": "Збирання",
|
|
1284
|
+
"indicator.error_initialize": "initializeCommand завершився з помилкою",
|
|
1285
|
+
"status.rebuild_parse_failed": "не вдалося розібрати вивід devcontainer up",
|
|
1286
|
+
"status.rebuild_missing_container_id": "відсутній containerId",
|
|
1287
|
+
"indicator.error_restart_recovery": "підключення не завершилося",
|
|
1288
|
+
"status.build_log_prepare_failed": "Не вдалося підготувати файл журналу збирання",
|
|
1289
|
+
"status.no_build_log": "Журнал збирання dev container ще відсутній",
|
|
1290
|
+
"status.build_log_missing": "Файл журналу збирання відсутній або не читається",
|
|
1291
|
+
"status.cancel_nothing_in_flight": "Немає поточного підключення dev container",
|
|
1292
|
+
"status.attach_cancelled": "Підключення dev container скасовано",
|
|
1293
|
+
"cmd.show_build_logs": "Dev Container: Показати журнал збирання",
|
|
1294
|
+
"cmd.show_build_logs_desc": "Відкриває журнал останнього devcontainer up",
|
|
1295
|
+
"cmd.cancel_attach": "Dev Container: Скасувати запуск",
|
|
1296
|
+
"cmd.cancel_attach_desc": "Перериває поточне підключення dev container",
|
|
1297
|
+
"popup.failed_attach_title": "Помилка підключення до dev container",
|
|
1298
|
+
"popup.failed_attach_message": "Помилка підключення до dev container: %{error}",
|
|
1299
|
+
"popup.failed_attach_action_retry": "Повторити",
|
|
1300
|
+
"popup.failed_attach_action_show_logs": "Показати логи збирання",
|
|
1301
|
+
"popup.failed_attach_action_reopen_local": "Відкрити локально",
|
|
1302
|
+
"popup.failed_attach_action_dismiss": "Закрити (ESC)",
|
|
1303
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Показати перенаправлені порти",
|
|
1304
|
+
"cmd.show_forwarded_ports_panel_desc": "Відкрити панель зі списком налаштованих портів і прив'язок під час виконання",
|
|
1305
|
+
"ports_panel.header": "Перенаправлені порти",
|
|
1306
|
+
"ports_panel.col_configured": "Налаштовано",
|
|
1307
|
+
"ports_panel.col_protocol": "Протокол",
|
|
1308
|
+
"ports_panel.col_label": "Мітка",
|
|
1309
|
+
"ports_panel.col_binding": "Прив'язка виконання",
|
|
1310
|
+
"ports_panel.no_ports": "Немає портів для показу.",
|
|
1311
|
+
"ports_panel.footer": "r: оновити q/Esc: закрити",
|
|
1312
|
+
"status.ports_panel_opened": "Панель перенаправлених портів відкрито",
|
|
1313
|
+
"status.ports_panel_refreshed": "Панель перенаправлених портів оновлено"
|
|
1314
|
+
},
|
|
1315
|
+
"vi": {
|
|
1316
|
+
"cmd.show_info": "Dev Container: Hiển thị thông tin",
|
|
1317
|
+
"cmd.show_info_desc": "Hiển thị cấu hình dev container trong bảng thông tin",
|
|
1318
|
+
"cmd.open_config": "Dev Container: Mở cấu hình",
|
|
1319
|
+
"cmd.open_config_desc": "Mở devcontainer.json trong trình soạn thảo",
|
|
1320
|
+
"cmd.run_lifecycle": "Dev Container: Chạy lệnh lifecycle",
|
|
1321
|
+
"cmd.run_lifecycle_desc": "Chọn và chạy một lệnh lifecycle của devcontainer",
|
|
1322
|
+
"cmd.show_features": "Dev Container: Hiển thị features",
|
|
1323
|
+
"cmd.show_features_desc": "Liệt kê các features đã cài đặt của dev container",
|
|
1324
|
+
"cmd.show_ports": "Dev Container: Hiển thị cổng",
|
|
1325
|
+
"cmd.show_ports_desc": "Hiển thị các chuyển tiếp cổng đã cấu hình",
|
|
1326
|
+
"cmd.rebuild": "Dev Container: Xây dựng lại",
|
|
1327
|
+
"cmd.rebuild_desc": "Xây dựng lại dev container bằng devcontainer CLI",
|
|
1328
|
+
"cmd.attach": "Dev Container: Gắn",
|
|
1329
|
+
"cmd.attach_desc": "Khởi động dev container và định tuyến thao tác chỉnh sửa qua nó",
|
|
1330
|
+
"cmd.detach": "Dev Container: Tháo",
|
|
1331
|
+
"cmd.detach_desc": "Dừng định tuyến qua dev container và quay lại chỉnh sửa cục bộ",
|
|
1332
|
+
"status.detected": "Dev Container: %{name} (%{image}) - %{features} features, %{ports} cổng",
|
|
1333
|
+
"status.no_config": "Không tìm thấy devcontainer.json",
|
|
1334
|
+
"status.panel_opened": "Đã mở bảng thông tin Dev Container",
|
|
1335
|
+
"status.panel_closed": "Đã đóng bảng thông tin Dev Container",
|
|
1336
|
+
"status.no_lifecycle": "Không có lệnh lifecycle nào được định nghĩa",
|
|
1337
|
+
"status.no_features": "Không có feature nào được cấu hình",
|
|
1338
|
+
"status.no_ports": "Không có cổng nào được cấu hình",
|
|
1339
|
+
"status.running": "Đang chạy %{name}...",
|
|
1340
|
+
"status.running_sub": "Đang chạy %{name} (%{label})...",
|
|
1341
|
+
"status.completed": "%{name} đã hoàn thành thành công",
|
|
1342
|
+
"status.failed": "%{name} thất bại (mã thoát %{code})",
|
|
1343
|
+
"status.failed_sub": "%{name} (%{label}) thất bại (mã thoát %{code})",
|
|
1344
|
+
"status.cli_not_found": "Không tìm thấy devcontainer CLI. Cài đặt bằng: npm i -g @devcontainers/cli",
|
|
1345
|
+
"status.copied_install": "Đã sao chép: %{cmd}",
|
|
1346
|
+
"status.rebuilding": "Đang xây dựng lại dev container...",
|
|
1347
|
+
"status.rebuild_done": "Xây dựng lại dev container hoàn tất",
|
|
1348
|
+
"status.rebuild_failed": "Xây dựng lại thất bại: %{error}",
|
|
1349
|
+
"popup.cli_title": "Không tìm thấy Dev Container CLI",
|
|
1350
|
+
"popup.cli_message": "Cần devcontainer CLI để xây dựng lại. Sao chép lệnh cài đặt bên dưới hoặc bỏ qua.",
|
|
1351
|
+
"popup.activate_open_config": "Mở cấu hình",
|
|
1352
|
+
"popup.attach_title": "Đã phát hiện dev container",
|
|
1353
|
+
"popup.attach_message": "Gắn vào dev container '%{name}'? Trình soạn thảo sẽ khởi động lại để I/O tệp và terminal đi qua container.",
|
|
1354
|
+
"popup.attach_action_attach": "Mở lại trong container",
|
|
1355
|
+
"popup.attach_action_dismiss": "Bỏ qua",
|
|
1356
|
+
"prompt.run_lifecycle": "Chạy lệnh lifecycle:",
|
|
1357
|
+
"prompt.features": "Features Dev Container:",
|
|
1358
|
+
"prompt.ports": "Cổng được chuyển tiếp:",
|
|
1359
|
+
"panel.header": "Dev Container: %{name}",
|
|
1360
|
+
"panel.section_image": "Ảnh",
|
|
1361
|
+
"panel.section_build": "Xây dựng",
|
|
1362
|
+
"panel.section_compose": "Docker Compose",
|
|
1363
|
+
"panel.section_features": "Features",
|
|
1364
|
+
"panel.section_ports": "Cổng",
|
|
1365
|
+
"panel.section_env": "Biến môi trường",
|
|
1366
|
+
"panel.section_mounts": "Gắn kết",
|
|
1367
|
+
"panel.section_users": "Người dùng",
|
|
1368
|
+
"panel.section_lifecycle": "Lệnh Lifecycle",
|
|
1369
|
+
"panel.section_host_req": "Yêu cầu máy chủ",
|
|
1370
|
+
"panel.footer": "Tab: chuyển Enter: kích hoạt Alt+r: lifecycle Alt+o: mở Alt+b: xây dựng lại q: đóng",
|
|
1371
|
+
"cmd.scaffold_config": "Dev Container: Tạo cấu hình",
|
|
1372
|
+
"cmd.scaffold_config_desc": "Tạo .devcontainer/devcontainer.json tối thiểu trong workspace",
|
|
1373
|
+
"status.scaffold_already_exists": "Cấu hình Dev Container đã tồn tại",
|
|
1374
|
+
"status.scaffold_created": "Đã tạo .devcontainer/devcontainer.json",
|
|
1375
|
+
"status.scaffold_failed": "Tạo cấu hình Dev Container thất bại",
|
|
1376
|
+
"cmd.show_logs": "Dev Container: Hiện nhật ký",
|
|
1377
|
+
"cmd.show_logs_desc": "Hiện stdout/stderr gần đây của container được gắn qua docker logs",
|
|
1378
|
+
"status.logs_require_container": "Hiện nhật ký cần một Dev Container được gắn",
|
|
1379
|
+
"status.logs_docker_missing": "CLI docker không tìm thấy trên host",
|
|
1380
|
+
"status.logs_loading": "Đang tải nhật ký container...",
|
|
1381
|
+
"status.logs_shown": "Đã hiện nhật ký container",
|
|
1382
|
+
"status.logs_empty": "(container chưa tạo đầu ra)",
|
|
1383
|
+
"indicator.phase_initialize": "Đang khởi tạo",
|
|
1384
|
+
"indicator.phase_build": "Đang xây dựng",
|
|
1385
|
+
"indicator.error_initialize": "initializeCommand thất bại",
|
|
1386
|
+
"status.rebuild_parse_failed": "không thể phân tích đầu ra của devcontainer up",
|
|
1387
|
+
"status.rebuild_missing_container_id": "thiếu containerId",
|
|
1388
|
+
"indicator.error_restart_recovery": "gắn kết không hoàn tất",
|
|
1389
|
+
"status.build_log_prepare_failed": "Không thể chuẩn bị tệp nhật ký xây dựng",
|
|
1390
|
+
"status.no_build_log": "Chưa có nhật ký xây dựng dev container",
|
|
1391
|
+
"status.build_log_missing": "Tệp nhật ký xây dựng bị thiếu hoặc không đọc được",
|
|
1392
|
+
"status.cancel_nothing_in_flight": "Không có kết nối dev container đang chạy",
|
|
1393
|
+
"status.attach_cancelled": "Đã hủy kết nối dev container",
|
|
1394
|
+
"cmd.show_build_logs": "Dev Container: Hiện nhật ký xây dựng",
|
|
1395
|
+
"cmd.show_build_logs_desc": "Mở nhật ký devcontainer up gần nhất",
|
|
1396
|
+
"cmd.cancel_attach": "Dev Container: Hủy khởi động",
|
|
1397
|
+
"cmd.cancel_attach_desc": "Hủy kết nối dev container đang chạy",
|
|
1398
|
+
"popup.failed_attach_title": "Kết nối dev container thất bại",
|
|
1399
|
+
"popup.failed_attach_message": "Kết nối dev container thất bại: %{error}",
|
|
1400
|
+
"popup.failed_attach_action_retry": "Thử lại",
|
|
1401
|
+
"popup.failed_attach_action_show_logs": "Xem log build",
|
|
1402
|
+
"popup.failed_attach_action_reopen_local": "Mở lại cục bộ",
|
|
1403
|
+
"popup.failed_attach_action_dismiss": "Đóng (ESC)",
|
|
1404
|
+
"cmd.show_forwarded_ports_panel": "Dev Container: Hiện cổng đã chuyển tiếp",
|
|
1405
|
+
"cmd.show_forwarded_ports_panel_desc": "Mở bảng liệt kê cổng đã cấu hình và liên kết runtime của container",
|
|
1406
|
+
"ports_panel.header": "Cổng đã chuyển tiếp",
|
|
1407
|
+
"ports_panel.col_configured": "Đã cấu hình",
|
|
1408
|
+
"ports_panel.col_protocol": "Giao thức",
|
|
1409
|
+
"ports_panel.col_label": "Nhãn",
|
|
1410
|
+
"ports_panel.col_binding": "Liên kết runtime",
|
|
1411
|
+
"ports_panel.no_ports": "Không có cổng nào để hiển thị.",
|
|
1412
|
+
"ports_panel.footer": "r: làm mới q/Esc: đóng",
|
|
1413
|
+
"status.ports_panel_opened": "Đã mở bảng cổng chuyển tiếp",
|
|
1414
|
+
"status.ports_panel_refreshed": "Đã làm mới bảng cổng chuyển tiếp"
|
|
1415
|
+
}
|
|
1416
|
+
}
|