@fresh-editor/fresh-editor 0.1.75 → 0.1.76
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 +26 -0
- package/README.md +6 -0
- package/package.json +1 -1
- package/plugins/audit_mode.ts +9 -4
- package/plugins/buffer_modified.ts +1 -1
- package/plugins/calculator.ts +1 -1
- package/plugins/check-types.sh +41 -0
- package/plugins/clangd_support.ts +1 -1
- package/plugins/color_highlighter.ts +4 -1
- package/plugins/config-schema.json +44 -2
- package/plugins/diagnostics_panel.i18n.json +52 -52
- package/plugins/diagnostics_panel.ts +168 -540
- package/plugins/find_references.ts +82 -324
- package/plugins/git_blame.i18n.json +260 -247
- package/plugins/git_blame.ts +4 -9
- package/plugins/git_find_file.ts +42 -270
- package/plugins/git_grep.ts +50 -167
- package/plugins/git_gutter.ts +1 -1
- package/plugins/git_log.ts +4 -11
- package/plugins/lib/finder.ts +1499 -0
- package/plugins/lib/fresh.d.ts +93 -17
- package/plugins/lib/index.ts +14 -0
- package/plugins/lib/navigation-controller.ts +1 -1
- package/plugins/lib/panel-manager.ts +7 -13
- package/plugins/lib/results-panel.ts +914 -0
- package/plugins/lib/search-utils.ts +343 -0
- package/plugins/lib/virtual-buffer-factory.ts +3 -2
- package/plugins/live_grep.ts +56 -379
- package/plugins/markdown_compose.ts +1 -17
- package/plugins/merge_conflict.ts +16 -14
- package/plugins/path_complete.ts +1 -1
- package/plugins/search_replace.i18n.json +13 -13
- package/plugins/search_replace.ts +11 -9
- package/plugins/theme_editor.ts +15 -9
- package/plugins/todo_highlighter.ts +1 -0
- package/plugins/vi_mode.ts +9 -5
- package/plugins/welcome.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## 0.1.76
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **Anonymous Telemetry**: Basic anonymous telemetry (version, OS, terminal type) sent with update checks. Disable via `check_for_updates` config or `--no-upgrade-check` flag.
|
|
8
|
+
* **Toggle Tab Bar/Menu Bar**: Hide or show tab bar and menu bar via command palette or View menu (#618).
|
|
9
|
+
* **Plugin Enable/Disable**: New config options to enable or disable individual plugins.
|
|
10
|
+
* **Improved Settings UI**: Layer-aware modified indicators, column headers for Map controls, visual indication for read-only fields in Settings UI entry dialogs.
|
|
11
|
+
* **Git Grep Preview**: Live preview panel with debouncing for Git Grep results.
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **Map Control Click**: Fixed "Add new" button requiring double-click instead of single click (#604).
|
|
16
|
+
* **File Explorer Session**: Persist `show_hidden` and `show_gitignored` settings across sessions (#569).
|
|
17
|
+
* **Line Numbers Config**: Respect `line_numbers` config when launching without a file argument (#539).
|
|
18
|
+
* **Find References UX**: Now uses prompt mode for consistent search experience.
|
|
19
|
+
* **i18n Placeholders**: Fixed string interpolation format in plugin translations (#706).
|
|
20
|
+
|
|
21
|
+
### Internal
|
|
22
|
+
|
|
23
|
+
* ResultsPanel abstraction with VS Code-style Provider pattern for plugin UI.
|
|
24
|
+
* TypeScript type checking for plugins.
|
|
25
|
+
* Test reliability improvements for e2e tests.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
3
29
|
## 0.1.75
|
|
4
30
|
|
|
5
31
|
This is mostly a bugfix release.
|
package/README.md
CHANGED
|
@@ -241,6 +241,12 @@ Thanks for contributing!
|
|
|
241
241
|
|
|
242
242
|
**Tip**: You can use tmux + send-keys + render-pane to script ad-hoc tests on the UI, for example when trying to reproduce an issue.
|
|
243
243
|
|
|
244
|
+
## Privacy
|
|
245
|
+
|
|
246
|
+
Fresh checks for new versions daily to notify you of available upgrades. Alongside this, it sends basic anonymous telemetry (version, OS/architecture, terminal type) to help understand usage patterns. No personal data or file contents are collected.
|
|
247
|
+
|
|
248
|
+
To disable both upgrade checks and telemetry, use `--no-upgrade-check` or set `check_for_updates: false` in your config.
|
|
249
|
+
|
|
244
250
|
## License
|
|
245
251
|
|
|
246
252
|
Copyright (c) Noam Lewis
|
package/package.json
CHANGED
package/plugins/audit_mode.ts
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
|
-
// Review Diff Plugin
|
|
2
|
-
// Provides a unified workflow for reviewing code changes (diffs, conflicts, AI outputs).
|
|
3
|
-
const editor = getEditor();
|
|
4
|
-
|
|
5
1
|
/// <reference path="./lib/fresh.d.ts" />
|
|
6
2
|
/// <reference path="./lib/types.ts" />
|
|
7
3
|
/// <reference path="./lib/virtual-buffer-factory.ts" />
|
|
8
4
|
|
|
5
|
+
// Review Diff Plugin
|
|
6
|
+
// Provides a unified workflow for reviewing code changes (diffs, conflicts, AI outputs).
|
|
7
|
+
//
|
|
8
|
+
// TODO: This plugin has incomplete/broken functionality:
|
|
9
|
+
// - Uses editor.prompt() which doesn't exist in the API (needs event-based prompt)
|
|
10
|
+
// - Uses VirtualBufferOptions.read_only (should be readOnly)
|
|
11
|
+
// - References stop_review_diff which is undefined
|
|
12
|
+
const editor = getEditor();
|
|
13
|
+
|
|
9
14
|
import { createVirtualBufferFactory } from "./lib/virtual-buffer-factory.ts";
|
|
10
15
|
const VirtualBufferFactory = createVirtualBufferFactory(editor);
|
|
11
16
|
|
package/plugins/calculator.ts
CHANGED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# TypeScript type checker for Fresh plugins
|
|
3
|
+
# Usage: ./check-types.sh [files...]
|
|
4
|
+
# If no files specified, checks all plugin files
|
|
5
|
+
#
|
|
6
|
+
# Each file is checked individually because plugins run in separate
|
|
7
|
+
# global scopes at runtime, so variables like `editor` don't conflict.
|
|
8
|
+
|
|
9
|
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
10
|
+
cd "$SCRIPT_DIR"
|
|
11
|
+
|
|
12
|
+
# Default to all plugin files if no arguments
|
|
13
|
+
if [ $# -eq 0 ]; then
|
|
14
|
+
FILES=(*.ts lib/*.ts)
|
|
15
|
+
else
|
|
16
|
+
FILES=("$@")
|
|
17
|
+
fi
|
|
18
|
+
|
|
19
|
+
echo "Checking TypeScript types for ${#FILES[@]} files..."
|
|
20
|
+
|
|
21
|
+
ERRORS=0
|
|
22
|
+
for file in "${FILES[@]}"; do
|
|
23
|
+
if ! npx -p typescript tsc \
|
|
24
|
+
--noEmit \
|
|
25
|
+
--target esnext \
|
|
26
|
+
--moduleResolution node \
|
|
27
|
+
--lib esnext,dom \
|
|
28
|
+
--skipLibCheck \
|
|
29
|
+
--allowImportingTsExtensions \
|
|
30
|
+
"$file" 2>&1; then
|
|
31
|
+
ERRORS=$((ERRORS + 1))
|
|
32
|
+
fi
|
|
33
|
+
done
|
|
34
|
+
|
|
35
|
+
if [ $ERRORS -eq 0 ]; then
|
|
36
|
+
echo "All type checks passed!"
|
|
37
|
+
else
|
|
38
|
+
echo ""
|
|
39
|
+
echo "$ERRORS file(s) had type errors"
|
|
40
|
+
exit 1
|
|
41
|
+
fi
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/// <reference path="./lib/fresh.d.ts" />
|
|
2
|
+
|
|
1
3
|
// TypeScript Color Highlighter Plugin
|
|
2
4
|
// Highlights color codes in source code with a colored swatch
|
|
3
5
|
// Supports: #RGB, #RRGGBB, rgb(), rgba(), hsl(), hsla(), Color::Rgb()
|
|
@@ -187,7 +189,8 @@ function highlightLine(
|
|
|
187
189
|
color[0],
|
|
188
190
|
color[1],
|
|
189
191
|
color[2],
|
|
190
|
-
true // before the character
|
|
192
|
+
true, // before the character
|
|
193
|
+
false // use_bg - use foreground color for the block character
|
|
191
194
|
);
|
|
192
195
|
}
|
|
193
196
|
}
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"default": null
|
|
23
23
|
},
|
|
24
24
|
"check_for_updates": {
|
|
25
|
-
"description": "Check for new versions on
|
|
25
|
+
"description": "Check for new versions on startup (default: true).\nWhen enabled, also sends basic anonymous telemetry (version, OS, terminal type).",
|
|
26
26
|
"type": "boolean",
|
|
27
27
|
"default": true
|
|
28
28
|
},
|
|
@@ -52,7 +52,9 @@
|
|
|
52
52
|
"file_tree_poll_interval_ms": 3000,
|
|
53
53
|
"default_line_ending": "lf",
|
|
54
54
|
"cursor_style": "default",
|
|
55
|
-
"quick_suggestions": true
|
|
55
|
+
"quick_suggestions": true,
|
|
56
|
+
"show_menu_bar": true,
|
|
57
|
+
"show_tab_bar": true
|
|
56
58
|
}
|
|
57
59
|
},
|
|
58
60
|
"file_explorer": {
|
|
@@ -123,6 +125,16 @@
|
|
|
123
125
|
"default": {
|
|
124
126
|
"show_status_indicator": true
|
|
125
127
|
}
|
|
128
|
+
},
|
|
129
|
+
"plugins": {
|
|
130
|
+
"description": "Plugin configurations by plugin name\nPlugins are auto-discovered from the plugins directory.\nUse this to enable/disable specific plugins.",
|
|
131
|
+
"type": "object",
|
|
132
|
+
"additionalProperties": {
|
|
133
|
+
"$ref": "#/$defs/PluginConfig"
|
|
134
|
+
},
|
|
135
|
+
"x-standalone-category": true,
|
|
136
|
+
"x-no-add": true,
|
|
137
|
+
"default": {}
|
|
126
138
|
}
|
|
127
139
|
},
|
|
128
140
|
"$defs": {
|
|
@@ -297,6 +309,16 @@
|
|
|
297
309
|
"description": "Enable quick suggestions (VS Code-like behavior).\nWhen enabled, completion suggestions appear automatically while typing,\nnot just on trigger characters (like `.` or `::`).\nDefault: true",
|
|
298
310
|
"type": "boolean",
|
|
299
311
|
"default": true
|
|
312
|
+
},
|
|
313
|
+
"show_menu_bar": {
|
|
314
|
+
"description": "Whether the menu bar is visible by default.\nThe menu bar provides access to menus (File, Edit, View, etc.) at the top of the screen.\nCan be toggled at runtime via command palette or keybinding.\nDefault: true",
|
|
315
|
+
"type": "boolean",
|
|
316
|
+
"default": true
|
|
317
|
+
},
|
|
318
|
+
"show_tab_bar": {
|
|
319
|
+
"description": "Whether the tab bar is visible by default.\nThe tab bar shows open files in each split pane.\nCan be toggled at runtime via command palette or keybinding.\nDefault: true",
|
|
320
|
+
"type": "boolean",
|
|
321
|
+
"default": true
|
|
300
322
|
}
|
|
301
323
|
}
|
|
302
324
|
},
|
|
@@ -763,6 +785,26 @@
|
|
|
763
785
|
"default": true
|
|
764
786
|
}
|
|
765
787
|
}
|
|
788
|
+
},
|
|
789
|
+
"PluginConfig": {
|
|
790
|
+
"description": "Configuration for an individual plugin",
|
|
791
|
+
"type": "object",
|
|
792
|
+
"properties": {
|
|
793
|
+
"enabled": {
|
|
794
|
+
"description": "Whether this plugin is enabled (default: true)\nWhen disabled, the plugin will not be loaded or executed.",
|
|
795
|
+
"type": "boolean",
|
|
796
|
+
"default": true
|
|
797
|
+
},
|
|
798
|
+
"path": {
|
|
799
|
+
"description": "Path to the plugin file (populated automatically when scanning)\nThis is filled in by the plugin system and should not be set manually.",
|
|
800
|
+
"type": [
|
|
801
|
+
"string",
|
|
802
|
+
"null"
|
|
803
|
+
],
|
|
804
|
+
"readOnly": true
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
"x-display-field": "/enabled"
|
|
766
808
|
}
|
|
767
809
|
}
|
|
768
810
|
}
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"status.loaded": "Plugin panelu diagnostiky nacten",
|
|
8
8
|
"status.failed_to_open": "Nepodarilo se otevrit panel diagnostiky",
|
|
9
9
|
"status.closed": "Panel diagnostiky zavren",
|
|
10
|
-
"status.jumped_to": "Skok na {file}
|
|
10
|
+
"status.jumped_to": "Skok na %{file}:%{line}",
|
|
11
11
|
"status.move_to_diagnostic": "Presunte kurzor na radek diagnostiky",
|
|
12
|
-
"status.showing": "Zobrazuji: {label}",
|
|
12
|
+
"status.showing": "Zobrazuji: %{label}",
|
|
13
13
|
"status.refreshed": "Diagnostika aktualizovana",
|
|
14
|
-
"status.diagnostics_count": "Diagnostika: {count} polozek | a: prepnout filtr | RET: prejit | q: zavrit",
|
|
15
|
-
"panel.header": "Diagnostika ({filter}):",
|
|
14
|
+
"status.diagnostics_count": "Diagnostika: %{count} polozek | a: prepnout filtr | RET: prejit | q: zavrit",
|
|
15
|
+
"panel.header": "Diagnostika (%{filter}):",
|
|
16
16
|
"panel.no_diagnostics": "Zadna diagnostika",
|
|
17
17
|
"panel.all_files": "Vsechny soubory",
|
|
18
18
|
"panel.current_file": "Aktualni soubor"
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"status.loaded": "Diagnose-Panel Plugin geladen",
|
|
26
26
|
"status.failed_to_open": "Diagnose-Panel konnte nicht geoffnet werden",
|
|
27
27
|
"status.closed": "Diagnose-Panel geschlossen",
|
|
28
|
-
"status.jumped_to": "Gesprungen zu {file}
|
|
28
|
+
"status.jumped_to": "Gesprungen zu %{file}:%{line}",
|
|
29
29
|
"status.move_to_diagnostic": "Cursor zu einer Diagnosezeile bewegen",
|
|
30
|
-
"status.showing": "Anzeige: {label}",
|
|
30
|
+
"status.showing": "Anzeige: %{label}",
|
|
31
31
|
"status.refreshed": "Diagnosen aktualisiert",
|
|
32
|
-
"status.diagnostics_count": "Diagnosen: {count} Elemente | a: Filter umschalten | RET: gehe zu | q: schliessen",
|
|
33
|
-
"panel.header": "Diagnosen ({filter}):",
|
|
32
|
+
"status.diagnostics_count": "Diagnosen: %{count} Elemente | a: Filter umschalten | RET: gehe zu | q: schliessen",
|
|
33
|
+
"panel.header": "Diagnosen (%{filter}):",
|
|
34
34
|
"panel.no_diagnostics": "Keine Diagnosen",
|
|
35
35
|
"panel.all_files": "Alle Dateien",
|
|
36
36
|
"panel.current_file": "Aktuelle Datei"
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"status.loaded": "Diagnostics Panel plugin loaded",
|
|
44
44
|
"status.failed_to_open": "Failed to open diagnostics panel",
|
|
45
45
|
"status.closed": "Diagnostics panel closed",
|
|
46
|
-
"status.jumped_to": "Jumped to {file}
|
|
46
|
+
"status.jumped_to": "Jumped to %{file}:%{line}",
|
|
47
47
|
"status.move_to_diagnostic": "Move cursor to a diagnostic line",
|
|
48
|
-
"status.showing": "Showing: {label}",
|
|
48
|
+
"status.showing": "Showing: %{label}",
|
|
49
49
|
"status.refreshed": "Diagnostics refreshed",
|
|
50
|
-
"status.diagnostics_count": "Diagnostics: {count} items | a: toggle filter | RET: goto | q: close",
|
|
51
|
-
"panel.header": "Diagnostics ({filter}):",
|
|
50
|
+
"status.diagnostics_count": "Diagnostics: %{count} items | a: toggle filter | RET: goto | q: close",
|
|
51
|
+
"panel.header": "Diagnostics (%{filter}):",
|
|
52
52
|
"panel.no_diagnostics": "No diagnostics",
|
|
53
53
|
"panel.all_files": "All Files",
|
|
54
54
|
"panel.current_file": "Current File"
|
|
@@ -61,12 +61,12 @@
|
|
|
61
61
|
"status.loaded": "Plugin de Panel de Diagnosticos cargado",
|
|
62
62
|
"status.failed_to_open": "Error al abrir el panel de diagnosticos",
|
|
63
63
|
"status.closed": "Panel de diagnosticos cerrado",
|
|
64
|
-
"status.jumped_to": "Salto a {file}
|
|
64
|
+
"status.jumped_to": "Salto a %{file}:%{line}",
|
|
65
65
|
"status.move_to_diagnostic": "Mueve el cursor a una linea de diagnostico",
|
|
66
|
-
"status.showing": "Mostrando: {label}",
|
|
66
|
+
"status.showing": "Mostrando: %{label}",
|
|
67
67
|
"status.refreshed": "Diagnosticos actualizados",
|
|
68
|
-
"status.diagnostics_count": "Diagnosticos: {count} elementos | a: alternar filtro | RET: ir | q: cerrar",
|
|
69
|
-
"panel.header": "Diagnosticos ({filter}):",
|
|
68
|
+
"status.diagnostics_count": "Diagnosticos: %{count} elementos | a: alternar filtro | RET: ir | q: cerrar",
|
|
69
|
+
"panel.header": "Diagnosticos (%{filter}):",
|
|
70
70
|
"panel.no_diagnostics": "Sin diagnosticos",
|
|
71
71
|
"panel.all_files": "Todos los Archivos",
|
|
72
72
|
"panel.current_file": "Archivo Actual"
|
|
@@ -79,12 +79,12 @@
|
|
|
79
79
|
"status.loaded": "Plugin du Panneau de Diagnostics charge",
|
|
80
80
|
"status.failed_to_open": "Echec de l'ouverture du panneau de diagnostics",
|
|
81
81
|
"status.closed": "Panneau de diagnostics ferme",
|
|
82
|
-
"status.jumped_to": "Saute vers {file}
|
|
82
|
+
"status.jumped_to": "Saute vers %{file}:%{line}",
|
|
83
83
|
"status.move_to_diagnostic": "Deplacez le curseur vers une ligne de diagnostic",
|
|
84
|
-
"status.showing": "Affichage: {label}",
|
|
84
|
+
"status.showing": "Affichage: %{label}",
|
|
85
85
|
"status.refreshed": "Diagnostics actualises",
|
|
86
|
-
"status.diagnostics_count": "Diagnostics: {count} elements | a: basculer filtre | RET: aller | q: fermer",
|
|
87
|
-
"panel.header": "Diagnostics ({filter}):",
|
|
86
|
+
"status.diagnostics_count": "Diagnostics: %{count} elements | a: basculer filtre | RET: aller | q: fermer",
|
|
87
|
+
"panel.header": "Diagnostics (%{filter}):",
|
|
88
88
|
"panel.no_diagnostics": "Aucun diagnostic",
|
|
89
89
|
"panel.all_files": "Tous les Fichiers",
|
|
90
90
|
"panel.current_file": "Fichier Actuel"
|
|
@@ -97,12 +97,12 @@
|
|
|
97
97
|
"status.loaded": "Plugin pannello diagnostica caricato",
|
|
98
98
|
"status.failed_to_open": "Impossibile aprire il pannello diagnostica",
|
|
99
99
|
"status.closed": "Pannello diagnostica chiuso",
|
|
100
|
-
"status.jumped_to": "Passato a {file}
|
|
100
|
+
"status.jumped_to": "Passato a %{file}:%{line}",
|
|
101
101
|
"status.move_to_diagnostic": "Sposta il cursore su una riga di diagnostica",
|
|
102
|
-
"status.showing": "Visualizzazione: {label}",
|
|
102
|
+
"status.showing": "Visualizzazione: %{label}",
|
|
103
103
|
"status.refreshed": "Diagnostica aggiornata",
|
|
104
|
-
"status.diagnostics_count": "Diagnostica: {count} elementi | a: alterna filtro | RET: vai a | q: chiudi",
|
|
105
|
-
"panel.header": "Diagnostica ({filter}):",
|
|
104
|
+
"status.diagnostics_count": "Diagnostica: %{count} elementi | a: alterna filtro | RET: vai a | q: chiudi",
|
|
105
|
+
"panel.header": "Diagnostica (%{filter}):",
|
|
106
106
|
"panel.no_diagnostics": "Nessuna diagnostica",
|
|
107
107
|
"panel.all_files": "Tutti i file",
|
|
108
108
|
"panel.current_file": "File corrente"
|
|
@@ -115,12 +115,12 @@
|
|
|
115
115
|
"status.loaded": "診断パネルプラグインが読み込まれました",
|
|
116
116
|
"status.failed_to_open": "診断パネルを開けませんでした",
|
|
117
117
|
"status.closed": "診断パネルを閉じました",
|
|
118
|
-
"status.jumped_to": "{file}
|
|
118
|
+
"status.jumped_to": "%{file}:%{line} にジャンプしました",
|
|
119
119
|
"status.move_to_diagnostic": "診断行にカーソルを移動してください",
|
|
120
|
-
"status.showing": "表示中: {label}",
|
|
120
|
+
"status.showing": "表示中: %{label}",
|
|
121
121
|
"status.refreshed": "診断が更新されました",
|
|
122
|
-
"status.diagnostics_count": "診断: {count} 件 | a: フィルター切替 | RET: 移動 | q: 閉じる",
|
|
123
|
-
"panel.header": "診断 ({filter}):",
|
|
122
|
+
"status.diagnostics_count": "診断: %{count} 件 | a: フィルター切替 | RET: 移動 | q: 閉じる",
|
|
123
|
+
"panel.header": "診断 (%{filter}):",
|
|
124
124
|
"panel.no_diagnostics": "診断なし",
|
|
125
125
|
"panel.all_files": "全てのファイル",
|
|
126
126
|
"panel.current_file": "現在のファイル"
|
|
@@ -133,12 +133,12 @@
|
|
|
133
133
|
"status.loaded": "진단 패널 플러그인이 로드되었습니다",
|
|
134
134
|
"status.failed_to_open": "진단 패널을 열 수 없습니다",
|
|
135
135
|
"status.closed": "진단 패널이 닫혔습니다",
|
|
136
|
-
"status.jumped_to": "{file}
|
|
136
|
+
"status.jumped_to": "%{file}:%{line}(으)로 이동했습니다",
|
|
137
137
|
"status.move_to_diagnostic": "커서를 진단 줄로 이동하세요",
|
|
138
|
-
"status.showing": "표시 중: {label}",
|
|
138
|
+
"status.showing": "표시 중: %{label}",
|
|
139
139
|
"status.refreshed": "진단이 새로고침되었습니다",
|
|
140
|
-
"status.diagnostics_count": "진단: {count}개 | a: 필터 전환 | RET: 이동 | q: 닫기",
|
|
141
|
-
"panel.header": "진단 ({filter}):",
|
|
140
|
+
"status.diagnostics_count": "진단: %{count}개 | a: 필터 전환 | RET: 이동 | q: 닫기",
|
|
141
|
+
"panel.header": "진단 (%{filter}):",
|
|
142
142
|
"panel.no_diagnostics": "진단 없음",
|
|
143
143
|
"panel.all_files": "모든 파일",
|
|
144
144
|
"panel.current_file": "현재 파일"
|
|
@@ -151,12 +151,12 @@
|
|
|
151
151
|
"status.loaded": "Plugin do Painel de Diagnosticos carregado",
|
|
152
152
|
"status.failed_to_open": "Falha ao abrir o painel de diagnosticos",
|
|
153
153
|
"status.closed": "Painel de diagnosticos fechado",
|
|
154
|
-
"status.jumped_to": "Pulou para {file}
|
|
154
|
+
"status.jumped_to": "Pulou para %{file}:%{line}",
|
|
155
155
|
"status.move_to_diagnostic": "Mova o cursor para uma linha de diagnostico",
|
|
156
|
-
"status.showing": "Exibindo: {label}",
|
|
156
|
+
"status.showing": "Exibindo: %{label}",
|
|
157
157
|
"status.refreshed": "Diagnosticos atualizados",
|
|
158
|
-
"status.diagnostics_count": "Diagnosticos: {count} itens | a: alternar filtro | RET: ir | q: fechar",
|
|
159
|
-
"panel.header": "Diagnosticos ({filter}):",
|
|
158
|
+
"status.diagnostics_count": "Diagnosticos: %{count} itens | a: alternar filtro | RET: ir | q: fechar",
|
|
159
|
+
"panel.header": "Diagnosticos (%{filter}):",
|
|
160
160
|
"panel.no_diagnostics": "Sem diagnosticos",
|
|
161
161
|
"panel.all_files": "Todos os Arquivos",
|
|
162
162
|
"panel.current_file": "Arquivo Atual"
|
|
@@ -169,12 +169,12 @@
|
|
|
169
169
|
"status.loaded": "Плагин панели диагностики загружен",
|
|
170
170
|
"status.failed_to_open": "Не удалось открыть панель диагностики",
|
|
171
171
|
"status.closed": "Панель диагностики закрыта",
|
|
172
|
-
"status.jumped_to": "Переход к {file}
|
|
172
|
+
"status.jumped_to": "Переход к %{file}:%{line}",
|
|
173
173
|
"status.move_to_diagnostic": "Переместите курсор на строку диагностики",
|
|
174
|
-
"status.showing": "Показано: {label}",
|
|
174
|
+
"status.showing": "Показано: %{label}",
|
|
175
175
|
"status.refreshed": "Диагностика обновлена",
|
|
176
|
-
"status.diagnostics_count": "Диагностика: {count} элементов | a: переключить фильтр | RET: перейти | q: закрыть",
|
|
177
|
-
"panel.header": "Диагностика ({filter}):",
|
|
176
|
+
"status.diagnostics_count": "Диагностика: %{count} элементов | a: переключить фильтр | RET: перейти | q: закрыть",
|
|
177
|
+
"panel.header": "Диагностика (%{filter}):",
|
|
178
178
|
"panel.no_diagnostics": "Нет диагностики",
|
|
179
179
|
"panel.all_files": "Все файлы",
|
|
180
180
|
"panel.current_file": "Текущий файл"
|
|
@@ -187,12 +187,12 @@
|
|
|
187
187
|
"status.loaded": "โหลดปลั๊กอินแผงการวินิจฉัยแล้ว",
|
|
188
188
|
"status.failed_to_open": "ไม่สามารถเปิดแผงการวินิจฉัย",
|
|
189
189
|
"status.closed": "ปิดแผงการวินิจฉัยแล้ว",
|
|
190
|
-
"status.jumped_to": "ข้ามไปที่ {file}
|
|
190
|
+
"status.jumped_to": "ข้ามไปที่ %{file}:%{line}",
|
|
191
191
|
"status.move_to_diagnostic": "เลื่อนเคอร์เซอร์ไปที่บรรทัดการวินิจฉัย",
|
|
192
|
-
"status.showing": "กำลังแสดง: {label}",
|
|
192
|
+
"status.showing": "กำลังแสดง: %{label}",
|
|
193
193
|
"status.refreshed": "รีเฟรชการวินิจฉัยแล้ว",
|
|
194
|
-
"status.diagnostics_count": "การวินิจฉัย: {count} รายการ | a: สลับตัวกรอง | RET: ไป | q: ปิด",
|
|
195
|
-
"panel.header": "การวินิจฉัย ({filter}):",
|
|
194
|
+
"status.diagnostics_count": "การวินิจฉัย: %{count} รายการ | a: สลับตัวกรอง | RET: ไป | q: ปิด",
|
|
195
|
+
"panel.header": "การวินิจฉัย (%{filter}):",
|
|
196
196
|
"panel.no_diagnostics": "ไม่มีการวินิจฉัย",
|
|
197
197
|
"panel.all_files": "ไฟล์ทั้งหมด",
|
|
198
198
|
"panel.current_file": "ไฟล์ปัจจุบัน"
|
|
@@ -205,12 +205,12 @@
|
|
|
205
205
|
"status.loaded": "Плагін панелі діагностики завантажено",
|
|
206
206
|
"status.failed_to_open": "Не вдалося відкрити панель діагностики",
|
|
207
207
|
"status.closed": "Панель діагностики закрито",
|
|
208
|
-
"status.jumped_to": "Перехід до {file}
|
|
208
|
+
"status.jumped_to": "Перехід до %{file}:%{line}",
|
|
209
209
|
"status.move_to_diagnostic": "Перемістіть курсор на рядок діагностики",
|
|
210
|
-
"status.showing": "Показано: {label}",
|
|
210
|
+
"status.showing": "Показано: %{label}",
|
|
211
211
|
"status.refreshed": "Діагностику оновлено",
|
|
212
|
-
"status.diagnostics_count": "Діагностика: {count} елементів | a: перемкнути фільтр | RET: перейти | q: закрити",
|
|
213
|
-
"panel.header": "Діагностика ({filter}):",
|
|
212
|
+
"status.diagnostics_count": "Діагностика: %{count} елементів | a: перемкнути фільтр | RET: перейти | q: закрити",
|
|
213
|
+
"panel.header": "Діагностика (%{filter}):",
|
|
214
214
|
"panel.no_diagnostics": "Немає діагностики",
|
|
215
215
|
"panel.all_files": "Усі файли",
|
|
216
216
|
"panel.current_file": "Поточний файл"
|
|
@@ -223,12 +223,12 @@
|
|
|
223
223
|
"status.loaded": "诊断面板插件已加载",
|
|
224
224
|
"status.failed_to_open": "无法打开诊断面板",
|
|
225
225
|
"status.closed": "诊断面板已关闭",
|
|
226
|
-
"status.jumped_to": "跳转到 {file}
|
|
226
|
+
"status.jumped_to": "跳转到 %{file}:%{line}",
|
|
227
227
|
"status.move_to_diagnostic": "请将光标移动到诊断行",
|
|
228
|
-
"status.showing": "显示: {label}",
|
|
228
|
+
"status.showing": "显示: %{label}",
|
|
229
229
|
"status.refreshed": "诊断已刷新",
|
|
230
|
-
"status.diagnostics_count": "诊断: {count} 项 | a: 切换过滤 | RET: 跳转 | q: 关闭",
|
|
231
|
-
"panel.header": "诊断 ({filter}):",
|
|
230
|
+
"status.diagnostics_count": "诊断: %{count} 项 | a: 切换过滤 | RET: 跳转 | q: 关闭",
|
|
231
|
+
"panel.header": "诊断 (%{filter}):",
|
|
232
232
|
"panel.no_diagnostics": "无诊断信息",
|
|
233
233
|
"panel.all_files": "所有文件",
|
|
234
234
|
"panel.current_file": "当前文件"
|