@fresh-editor/fresh-editor 0.1.67 → 0.1.70
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 +97 -0
- package/README.md +2 -0
- package/package.json +1 -1
- package/plugins/audit_mode.i18n.json +380 -0
- package/plugins/audit_mode.ts +836 -68
- package/plugins/buffer_modified.i18n.json +32 -0
- package/plugins/buffer_modified.ts +5 -3
- package/plugins/calculator.i18n.json +44 -0
- package/plugins/calculator.ts +6 -4
- package/plugins/clangd-lsp.ts +2 -0
- package/plugins/clangd_support.i18n.json +104 -0
- package/plugins/clangd_support.ts +18 -16
- package/plugins/color_highlighter.i18n.json +68 -0
- package/plugins/color_highlighter.ts +12 -10
- package/plugins/config-schema.json +28 -145
- package/plugins/csharp-lsp.ts +2 -0
- package/plugins/csharp_support.i18n.json +38 -0
- package/plugins/csharp_support.ts +6 -4
- package/plugins/css-lsp.ts +2 -0
- package/plugins/diagnostics_panel.i18n.json +110 -0
- package/plugins/diagnostics_panel.ts +19 -17
- package/plugins/find_references.i18n.json +128 -0
- package/plugins/find_references.ts +22 -20
- package/plugins/git_blame.i18n.json +230 -0
- package/plugins/git_blame.ts +39 -37
- package/plugins/git_find_file.i18n.json +146 -0
- package/plugins/git_find_file.ts +24 -22
- package/plugins/git_grep.i18n.json +80 -0
- package/plugins/git_grep.ts +15 -13
- package/plugins/git_gutter.i18n.json +44 -0
- package/plugins/git_gutter.ts +7 -5
- package/plugins/git_log.i18n.json +224 -0
- package/plugins/git_log.ts +41 -39
- package/plugins/go-lsp.ts +2 -0
- package/plugins/html-lsp.ts +2 -0
- package/plugins/json-lsp.ts +2 -0
- package/plugins/lib/fresh.d.ts +53 -13
- package/plugins/lib/index.ts +1 -1
- package/plugins/lib/navigation-controller.ts +3 -3
- package/plugins/lib/panel-manager.ts +15 -13
- package/plugins/lib/virtual-buffer-factory.ts +84 -112
- package/plugins/live_grep.i18n.json +80 -0
- package/plugins/live_grep.ts +15 -13
- package/plugins/markdown_compose.i18n.json +104 -0
- package/plugins/markdown_compose.ts +17 -15
- package/plugins/merge_conflict.i18n.json +380 -0
- package/plugins/merge_conflict.ts +72 -73
- package/plugins/path_complete.i18n.json +38 -0
- package/plugins/path_complete.ts +6 -4
- package/plugins/python-lsp.ts +2 -0
- package/plugins/rust-lsp.ts +2 -0
- package/plugins/search_replace.i18n.json +188 -0
- package/plugins/search_replace.ts +31 -29
- package/plugins/test_i18n.i18n.json +12 -0
- package/plugins/test_i18n.ts +18 -0
- package/plugins/theme_editor.i18n.json +1417 -0
- package/plugins/theme_editor.ts +73 -69
- package/plugins/todo_highlighter.i18n.json +86 -0
- package/plugins/todo_highlighter.ts +15 -13
- package/plugins/typescript-lsp.ts +2 -0
- package/plugins/vi_mode.i18n.json +716 -0
- package/plugins/vi_mode.ts +1195 -78
- package/plugins/welcome.i18n.json +110 -0
- package/plugins/welcome.ts +18 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,102 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## 0.1.70
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **Input Calibration Wizard**: New wizard to calibrate keyboard input for terminals with broken key sequences. Access via "Calibrate Keyboard" in command palette or View menu. Uses failsafe ASCII-only navigation (#219).
|
|
8
|
+
|
|
9
|
+
* **Terminal Cursor Color**: Cursor color now set via OSC 12 escape sequence for proper visibility across all themes, especially light theme.
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **Dynamic Keybinding Hints**: Status messages now show actual keybindings from keymap instead of hardcoded shortcuts (#659).
|
|
14
|
+
|
|
15
|
+
* **Search in Large Files**: Fixed "Buffer not fully loaded" error when searching in large plain text files (#657).
|
|
16
|
+
|
|
17
|
+
* **LSP Config Preservation**: Fixed LSP command field becoming empty when toggling enabled state. Partial config now merges with defaults (#630, #631).
|
|
18
|
+
|
|
19
|
+
* **Multi-Cursor End of Line**: Fixed secondary cursors rendering at line start instead of end (#632).
|
|
20
|
+
|
|
21
|
+
* **Selection at Cursor**: Fixed selection background not showing at primary cursor position with bar/underline cursor styles (#614).
|
|
22
|
+
|
|
23
|
+
* **Locale Interpolation**: Fixed locale name not appearing in "Locale changed" message (#624).
|
|
24
|
+
|
|
25
|
+
* **Cursor Past Trailing Newline**: Allow cursor to navigate to the empty line after trailing newline (#622, @Asuka-Minato).
|
|
26
|
+
|
|
27
|
+
* **.env Syntax Highlighting**: Added .env to default shell syntax patterns (#559).
|
|
28
|
+
|
|
29
|
+
* **Spanish Translation**: Fixed typo in menu bar (@osniel).
|
|
30
|
+
|
|
31
|
+
* **Audit Mode Keybindings**: Use Emacs-style key notation in diff-view bindings (@xunzhou).
|
|
32
|
+
|
|
33
|
+
### Internal
|
|
34
|
+
|
|
35
|
+
* Refactored config system to use layered PartialConfig resolution everywhere.
|
|
36
|
+
* Code cleanup: use `Self` where possible, merge match arms (@adamnemecek).
|
|
37
|
+
* Clean up log output by resetting to column zero (@Martin-Häcker).
|
|
38
|
+
* Bumped windows-sys to 0.61.2 (@dependabot).
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## 0.1.69
|
|
43
|
+
|
|
44
|
+
> **macOS Users**: This release includes significant improvements for macOS terminal compatibility. See the new [macOS Terminal Tips](docs/USER_GUIDE.md#macos-terminal-tips) guide for recommended terminal emulators and keyboard configuration. The macOS keymap ([`keymaps/macos.json`](keymaps/macos.json)) is a work in progress—please submit patches based on your experience with different terminals and keyboard layouts!
|
|
45
|
+
|
|
46
|
+
### Features
|
|
47
|
+
|
|
48
|
+
* **macOS Keymap**: Terminal-friendly keybindings that avoid broken Ctrl+Shift combinations, ASCII control char collisions (Ctrl+J=LF), and international keyboard conflicts (Ctrl+Alt+L=@ on German). Key bindings: Ctrl+R (redo), Ctrl+G (find next), Ctrl+L (go to line), Ctrl+T (go to symbol), Alt+B/F (word movement). See [macOS Terminal Tips](docs/USER_GUIDE.md#macos-terminal-tips) (#219).
|
|
49
|
+
|
|
50
|
+
* **4-Level Config System**: Configuration now merges user, platform, project, and session layers. Settings UI shows layer indicators and allows editing specific config files.
|
|
51
|
+
|
|
52
|
+
* **Tab Context Menu**: Right-click tabs for Close, Close Others, Close All, Close to Right options.
|
|
53
|
+
|
|
54
|
+
* **Drag-to-Split Tabs**: Drag tabs to screen edges to create new splits.
|
|
55
|
+
|
|
56
|
+
* **Plugin Logging**: New `editor.error()`, `editor.warn()`, `editor.info()`, `editor.debug()` methods route plugin output through the editor's logging system.
|
|
57
|
+
|
|
58
|
+
* **Log Management**: Logs moved to XDG state directory with automatic 24-hour cleanup. Use `--show-paths` to see log locations.
|
|
59
|
+
|
|
60
|
+
### Experimental
|
|
61
|
+
|
|
62
|
+
*These features are work-in-progress. Expect rough edges and breaking changes.*
|
|
63
|
+
|
|
64
|
+
* **Internationalization (i18n)**: Full i18n support with 11 languages (German, French, Spanish, Japanese, Korean, Chinese, Russian, Ukrainian, Czech, Portuguese, Thai). Select locale via command palette or Settings UI. Plugins support translation via `editor.t()` and `.i18n.json` files. *Note*: Keybinding shortcuts do not take the active layout into account, which is why this feature is still experimental. Also I need you to provide feedback on the translations since they were all machine-generated and I don't speak any of the languages added.
|
|
65
|
+
|
|
66
|
+
* **Vi Mode Plugin**: Added `.` repeat command, visual block mode, and colon command mode with comprehensive vim commands (`:w`, `:q`, `:wq`, `:e`, `:split`, etc.).
|
|
67
|
+
|
|
68
|
+
* **Review Diff Plugin**: Side-by-side diff view with synchronized scrolling, line alignment, and word-level highlighting. Access via "Side-by-Side Diff" command.
|
|
69
|
+
|
|
70
|
+
### Bug Fixes
|
|
71
|
+
|
|
72
|
+
* **Tab Size Zero Panic**: Fixed division by zero when tab_size is 0 (#580).
|
|
73
|
+
|
|
74
|
+
* **Hidden Cursor Panic**: Fixed crash when rendering buffers with hidden cursors (#607, yoooughtul).
|
|
75
|
+
|
|
76
|
+
* **Settings Paste**: Fixed clipboard paste not working in Settings UI edit dialogs (#605, Tyooughtul).
|
|
77
|
+
|
|
78
|
+
* **Show Hidden Truncation**: Fixed "Show Hidden" checkbox label truncated in file dialog (#558).
|
|
79
|
+
|
|
80
|
+
* **Syntax Highlighting Config**: User-configured filename patterns now work for syntax highlighting (#565).
|
|
81
|
+
|
|
82
|
+
* **Replace All Performance**: Fixed O(n²) performance issue causing hangs on large files (#564).
|
|
83
|
+
|
|
84
|
+
* **Plugin Thread Hang**: Fixed plugin thread hanging on shutdown.
|
|
85
|
+
|
|
86
|
+
* **File Explorer Crash**: Fixed crash when scroll_offset exceeds tree size (#562).
|
|
87
|
+
|
|
88
|
+
* **Background Revert Jump**: Fixed viewport jumping when auto-reverting background files.
|
|
89
|
+
|
|
90
|
+
* **Scrollbar Gaps**: Render scrollbars with background fills to avoid glyph gaps in some terminals (Oleksii Smotrov).
|
|
91
|
+
|
|
92
|
+
### Performance
|
|
93
|
+
|
|
94
|
+
* **BulkEdit Operations**: Multi-cursor and replace-all now use O(n) algorithm instead of O(n²).
|
|
95
|
+
|
|
96
|
+
* **Semantic Highlighting**: Debounced to reduce CPU usage during rapid cursor movement.
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
3
100
|
## 0.1.67
|
|
4
101
|
|
|
5
102
|
### Features
|
package/README.md
CHANGED
|
@@ -38,6 +38,7 @@ Fresh is engineered for speed. It delivers a low-latency experience, with text a
|
|
|
38
38
|
- **Language Server (LSP)**: go to definition, references, hover, code actions, rename, diagnostics, autocompletion
|
|
39
39
|
- **Productivity**: command palette, menu bar, keyboard macros, git log, diagnostics panel
|
|
40
40
|
- **Plugins & Extensibility**: TypeScript plugins, color highlighter, TODO highlighter, merge conflicts, path complete, keymaps
|
|
41
|
+
- **Internationalization**: Multiple language support (see [`locales/`](locales/) for available languages), plugin translation system
|
|
41
42
|
|
|
42
43
|

|
|
43
44
|

|
|
@@ -216,6 +217,7 @@ cargo build --release
|
|
|
216
217
|
## Documentation
|
|
217
218
|
|
|
218
219
|
- [User Guide](docs/USER_GUIDE.md)
|
|
220
|
+
- [macOS Tips](docs/USER_GUIDE.md#macos-terminal-tips) - Terminal configuration, keyboard shortcuts, and troubleshooting for Mac users
|
|
219
221
|
- [Plugin Development](docs/PLUGIN_DEVELOPMENT.md)
|
|
220
222
|
- [Architecture](docs/ARCHITECTURE.md)
|
|
221
223
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
{
|
|
2
|
+
"en": {
|
|
3
|
+
"cmd.review_diff": "Review Diff",
|
|
4
|
+
"cmd.review_diff_desc": "Start code review session",
|
|
5
|
+
"cmd.stop_review_diff": "Stop Review Diff",
|
|
6
|
+
"cmd.stop_review_diff_desc": "Stop the review session",
|
|
7
|
+
"cmd.refresh_review_diff": "Refresh Review Diff",
|
|
8
|
+
"cmd.refresh_review_diff_desc": "Refresh the list of changes",
|
|
9
|
+
"cmd.side_by_side_diff": "Side-by-Side Diff",
|
|
10
|
+
"cmd.side_by_side_diff_desc": "Show side-by-side diff for current file",
|
|
11
|
+
"cmd.add_comment": "Review: Add Comment",
|
|
12
|
+
"cmd.add_comment_desc": "Add a review comment to the current hunk",
|
|
13
|
+
"cmd.approve_hunk": "Review: Approve Hunk",
|
|
14
|
+
"cmd.approve_hunk_desc": "Mark hunk as approved",
|
|
15
|
+
"cmd.reject_hunk": "Review: Reject Hunk",
|
|
16
|
+
"cmd.reject_hunk_desc": "Mark hunk as rejected",
|
|
17
|
+
"cmd.needs_changes": "Review: Needs Changes",
|
|
18
|
+
"cmd.needs_changes_desc": "Mark hunk as needing changes",
|
|
19
|
+
"cmd.question": "Review: Question",
|
|
20
|
+
"cmd.question_desc": "Mark hunk with a question",
|
|
21
|
+
"cmd.clear_status": "Review: Clear Status",
|
|
22
|
+
"cmd.clear_status_desc": "Clear hunk review status",
|
|
23
|
+
"cmd.overall_feedback": "Review: Overall Feedback",
|
|
24
|
+
"cmd.overall_feedback_desc": "Set overall review feedback",
|
|
25
|
+
"cmd.export_markdown": "Review: Export to Markdown",
|
|
26
|
+
"cmd.export_markdown_desc": "Export review to .review/session.md",
|
|
27
|
+
"cmd.export_json": "Review: Export to JSON",
|
|
28
|
+
"cmd.export_json_desc": "Export review to .review/session.json",
|
|
29
|
+
"status.refreshing": "Refreshing review diff...",
|
|
30
|
+
"status.updated": "Review diff updated. Found %{count} hunks.",
|
|
31
|
+
"status.loading_diff": "Loading side-by-side diff...",
|
|
32
|
+
"status.not_git_repo": "Not in a git repository",
|
|
33
|
+
"status.failed_old_version": "Failed to load old file version",
|
|
34
|
+
"status.failed_new_version": "Failed to load new file version",
|
|
35
|
+
"status.diff_summary": "Side-by-side diff: +%{added} -%{removed} ~%{modified} | 'q' to return",
|
|
36
|
+
"status.no_hunk_selected": "No hunk selected for comment",
|
|
37
|
+
"status.comment_added": "Comment added to %{line}",
|
|
38
|
+
"status.comment_cancelled": "Comment cancelled",
|
|
39
|
+
"status.hunk_approved": "Hunk approved",
|
|
40
|
+
"status.hunk_rejected": "Hunk rejected",
|
|
41
|
+
"status.hunk_needs_changes": "Hunk marked as needs changes",
|
|
42
|
+
"status.hunk_question": "Hunk marked with question",
|
|
43
|
+
"status.hunk_status_cleared": "Hunk review status cleared",
|
|
44
|
+
"status.feedback_set": "Overall feedback set",
|
|
45
|
+
"status.feedback_cleared": "Overall feedback cleared",
|
|
46
|
+
"status.exported": "Review exported to %{path}",
|
|
47
|
+
"status.generating": "Generating Review Diff Stream...",
|
|
48
|
+
"status.review_summary": "Review Diff: %{count} hunks | [c]omment [a]pprove [x]reject [!]changes [?]question [E]xport",
|
|
49
|
+
"status.stopped": "Review Diff Mode stopped.",
|
|
50
|
+
"status.no_file_open": "No file open - cannot show diff",
|
|
51
|
+
"status.failed_git_diff": "Failed to get git diff for file",
|
|
52
|
+
"status.no_changes": "No changes in this file",
|
|
53
|
+
"status.failed_old_new_file": "Failed to load old file version (file may be new)",
|
|
54
|
+
"prompt.comment": "Comment on %{line}: ",
|
|
55
|
+
"prompt.overall_feedback": "Overall feedback: ",
|
|
56
|
+
"panel.no_changes": "No changes to review.",
|
|
57
|
+
"panel.help_review": "REVIEW: [c]omment [a]pprove [x]reject [!]changes [?]question [u]ndo",
|
|
58
|
+
"panel.help_stage": "STAGE: [s]tage [d]iscard | NAV: [n]ext [p]rev [Enter]drill [q]uit",
|
|
59
|
+
"panel.help_export": "EXPORT: [E] .review/session.md | [O]verall feedback | [r]efresh",
|
|
60
|
+
"panel.help_review_footer": "REVIEW: [c]omment [a]pprove [x]reject [!]needs-changes [?]question [u]ndo",
|
|
61
|
+
"panel.help_stage_footer": "STAGE: [s]tage [d]iscard | NAV: [n]ext [p]rev [Enter]drill-down [q]uit",
|
|
62
|
+
"panel.help_export_footer": "EXPORT: [E]xport to .review/session.md | [O]verall feedback [r]efresh",
|
|
63
|
+
"debug.loaded": "Review Diff plugin loaded with review comments support"
|
|
64
|
+
},
|
|
65
|
+
"es": {
|
|
66
|
+
"cmd.review_diff": "Revisar Diferencias",
|
|
67
|
+
"cmd.review_diff_desc": "Iniciar sesion de revision de codigo",
|
|
68
|
+
"cmd.stop_review_diff": "Detener Revision",
|
|
69
|
+
"cmd.stop_review_diff_desc": "Detener la sesion de revision",
|
|
70
|
+
"cmd.refresh_review_diff": "Actualizar Diferencias",
|
|
71
|
+
"cmd.refresh_review_diff_desc": "Actualizar la lista de cambios",
|
|
72
|
+
"cmd.side_by_side_diff": "Diferencias Lado a Lado",
|
|
73
|
+
"cmd.side_by_side_diff_desc": "Mostrar diferencias lado a lado del archivo actual",
|
|
74
|
+
"cmd.add_comment": "Revision: Agregar Comentario",
|
|
75
|
+
"cmd.add_comment_desc": "Agregar un comentario de revision al bloque actual",
|
|
76
|
+
"cmd.approve_hunk": "Revision: Aprobar Bloque",
|
|
77
|
+
"cmd.approve_hunk_desc": "Marcar bloque como aprobado",
|
|
78
|
+
"cmd.reject_hunk": "Revision: Rechazar Bloque",
|
|
79
|
+
"cmd.reject_hunk_desc": "Marcar bloque como rechazado",
|
|
80
|
+
"cmd.needs_changes": "Revision: Necesita Cambios",
|
|
81
|
+
"cmd.needs_changes_desc": "Marcar bloque como que necesita cambios",
|
|
82
|
+
"cmd.question": "Revision: Pregunta",
|
|
83
|
+
"cmd.question_desc": "Marcar bloque con una pregunta",
|
|
84
|
+
"cmd.clear_status": "Revision: Limpiar Estado",
|
|
85
|
+
"cmd.clear_status_desc": "Limpiar estado de revision del bloque",
|
|
86
|
+
"cmd.overall_feedback": "Revision: Comentario General",
|
|
87
|
+
"cmd.overall_feedback_desc": "Establecer comentario general de la revision",
|
|
88
|
+
"cmd.export_markdown": "Revision: Exportar a Markdown",
|
|
89
|
+
"cmd.export_markdown_desc": "Exportar revision a .review/session.md",
|
|
90
|
+
"cmd.export_json": "Revision: Exportar a JSON",
|
|
91
|
+
"cmd.export_json_desc": "Exportar revision a .review/session.json",
|
|
92
|
+
"status.refreshing": "Actualizando diferencias de revision...",
|
|
93
|
+
"status.updated": "Diferencias actualizadas. Se encontraron %{count} bloques.",
|
|
94
|
+
"status.loading_diff": "Cargando diferencias lado a lado...",
|
|
95
|
+
"status.not_git_repo": "No esta en un repositorio git",
|
|
96
|
+
"status.failed_old_version": "Error al cargar version anterior del archivo",
|
|
97
|
+
"status.failed_new_version": "Error al cargar version nueva del archivo",
|
|
98
|
+
"status.diff_summary": "Diferencias lado a lado: +%{added} -%{removed} ~%{modified} | 'q' para volver",
|
|
99
|
+
"status.no_hunk_selected": "Ningun bloque seleccionado para comentar",
|
|
100
|
+
"status.comment_added": "Comentario agregado a %{line}",
|
|
101
|
+
"status.comment_cancelled": "Comentario cancelado",
|
|
102
|
+
"status.hunk_approved": "Bloque aprobado",
|
|
103
|
+
"status.hunk_rejected": "Bloque rechazado",
|
|
104
|
+
"status.hunk_needs_changes": "Bloque marcado como necesita cambios",
|
|
105
|
+
"status.hunk_question": "Bloque marcado con pregunta",
|
|
106
|
+
"status.hunk_status_cleared": "Estado de revision del bloque limpiado",
|
|
107
|
+
"status.feedback_set": "Comentario general establecido",
|
|
108
|
+
"status.feedback_cleared": "Comentario general limpiado",
|
|
109
|
+
"status.exported": "Revision exportada a %{path}",
|
|
110
|
+
"status.generating": "Generando flujo de revision de diferencias...",
|
|
111
|
+
"status.review_summary": "Revision: %{count} bloques | [c]omentar [a]probar [x]rechazar [!]cambios [?]pregunta [E]xportar",
|
|
112
|
+
"status.stopped": "Modo de revision de diferencias detenido.",
|
|
113
|
+
"status.no_file_open": "Ningun archivo abierto - no se pueden mostrar diferencias",
|
|
114
|
+
"status.failed_git_diff": "Error al obtener diferencias git del archivo",
|
|
115
|
+
"status.no_changes": "No hay cambios en este archivo",
|
|
116
|
+
"status.failed_old_new_file": "Error al cargar version anterior (el archivo puede ser nuevo)",
|
|
117
|
+
"prompt.comment": "Comentario en %{line}: ",
|
|
118
|
+
"prompt.overall_feedback": "Comentario general: ",
|
|
119
|
+
"panel.no_changes": "No hay cambios para revisar.",
|
|
120
|
+
"panel.help_review": "REVISION: [c]omentar [a]probar [x]rechazar [!]cambios [?]pregunta [u]deshacer",
|
|
121
|
+
"panel.help_stage": "PREPARAR: [s]tage [d]escartar | NAV: [n]ext [p]rev [Enter]detallar [q]salir",
|
|
122
|
+
"panel.help_export": "EXPORTAR: [E] .review/session.md | [O]general | [r]efrescar",
|
|
123
|
+
"panel.help_review_footer": "REVISION: [c]omentar [a]probar [x]rechazar [!]cambios [?]pregunta [u]deshacer",
|
|
124
|
+
"panel.help_stage_footer": "PREPARAR: [s]tage [d]escartar | NAV: [n]ext [p]rev [Enter]detallar [q]salir",
|
|
125
|
+
"panel.help_export_footer": "EXPORTAR: [E]xportar a .review/session.md | [O]general [r]efrescar",
|
|
126
|
+
"debug.loaded": "Plugin de revision de diferencias cargado con soporte de comentarios"
|
|
127
|
+
},
|
|
128
|
+
"de": {
|
|
129
|
+
"cmd.review_diff": "Unterschiede prufen",
|
|
130
|
+
"cmd.review_diff_desc": "Code-Review-Sitzung starten",
|
|
131
|
+
"cmd.stop_review_diff": "Review beenden",
|
|
132
|
+
"cmd.stop_review_diff_desc": "Review-Sitzung beenden",
|
|
133
|
+
"cmd.refresh_review_diff": "Unterschiede aktualisieren",
|
|
134
|
+
"cmd.refresh_review_diff_desc": "Liste der Anderungen aktualisieren",
|
|
135
|
+
"cmd.side_by_side_diff": "Nebeneinander-Ansicht",
|
|
136
|
+
"cmd.side_by_side_diff_desc": "Unterschiede der aktuellen Datei nebeneinander anzeigen",
|
|
137
|
+
"cmd.add_comment": "Review: Kommentar hinzufugen",
|
|
138
|
+
"cmd.add_comment_desc": "Einen Review-Kommentar zum aktuellen Block hinzufugen",
|
|
139
|
+
"cmd.approve_hunk": "Review: Block genehmigen",
|
|
140
|
+
"cmd.approve_hunk_desc": "Block als genehmigt markieren",
|
|
141
|
+
"cmd.reject_hunk": "Review: Block ablehnen",
|
|
142
|
+
"cmd.reject_hunk_desc": "Block als abgelehnt markieren",
|
|
143
|
+
"cmd.needs_changes": "Review: Anderungen erforderlich",
|
|
144
|
+
"cmd.needs_changes_desc": "Block als anderungsbedurftig markieren",
|
|
145
|
+
"cmd.question": "Review: Frage",
|
|
146
|
+
"cmd.question_desc": "Block mit einer Frage markieren",
|
|
147
|
+
"cmd.clear_status": "Review: Status loschen",
|
|
148
|
+
"cmd.clear_status_desc": "Review-Status des Blocks loschen",
|
|
149
|
+
"cmd.overall_feedback": "Review: Gesamtfeedback",
|
|
150
|
+
"cmd.overall_feedback_desc": "Gesamtfeedback fur das Review festlegen",
|
|
151
|
+
"cmd.export_markdown": "Review: Als Markdown exportieren",
|
|
152
|
+
"cmd.export_markdown_desc": "Review nach .review/session.md exportieren",
|
|
153
|
+
"cmd.export_json": "Review: Als JSON exportieren",
|
|
154
|
+
"cmd.export_json_desc": "Review nach .review/session.json exportieren",
|
|
155
|
+
"status.refreshing": "Unterschiede werden aktualisiert...",
|
|
156
|
+
"status.updated": "Unterschiede aktualisiert. %{count} Blocke gefunden.",
|
|
157
|
+
"status.loading_diff": "Nebeneinander-Ansicht wird geladen...",
|
|
158
|
+
"status.not_git_repo": "Kein Git-Repository",
|
|
159
|
+
"status.failed_old_version": "Alte Dateiversion konnte nicht geladen werden",
|
|
160
|
+
"status.failed_new_version": "Neue Dateiversion konnte nicht geladen werden",
|
|
161
|
+
"status.diff_summary": "Nebeneinander-Ansicht: +%{added} -%{removed} ~%{modified} | 'q' zum Zuruckkehren",
|
|
162
|
+
"status.no_hunk_selected": "Kein Block fur Kommentar ausgewahlt",
|
|
163
|
+
"status.comment_added": "Kommentar zu %{line} hinzugefugt",
|
|
164
|
+
"status.comment_cancelled": "Kommentar abgebrochen",
|
|
165
|
+
"status.hunk_approved": "Block genehmigt",
|
|
166
|
+
"status.hunk_rejected": "Block abgelehnt",
|
|
167
|
+
"status.hunk_needs_changes": "Block als anderungsbedurftig markiert",
|
|
168
|
+
"status.hunk_question": "Block mit Frage markiert",
|
|
169
|
+
"status.hunk_status_cleared": "Review-Status des Blocks geloscht",
|
|
170
|
+
"status.feedback_set": "Gesamtfeedback festgelegt",
|
|
171
|
+
"status.feedback_cleared": "Gesamtfeedback geloscht",
|
|
172
|
+
"status.exported": "Review exportiert nach %{path}",
|
|
173
|
+
"status.generating": "Review-Diff-Stream wird generiert...",
|
|
174
|
+
"status.review_summary": "Review: %{count} Blocke | [c]Kommentar [a]Genehmigen [x]Ablehnen [!]Anderungen [?]Frage [E]xportieren",
|
|
175
|
+
"status.stopped": "Review-Diff-Modus beendet.",
|
|
176
|
+
"status.no_file_open": "Keine Datei geoffnet - kann Unterschiede nicht anzeigen",
|
|
177
|
+
"status.failed_git_diff": "Git-Diff fur Datei konnte nicht abgerufen werden",
|
|
178
|
+
"status.no_changes": "Keine Anderungen in dieser Datei",
|
|
179
|
+
"status.failed_old_new_file": "Alte Dateiversion konnte nicht geladen werden (Datei ist moglicherweise neu)",
|
|
180
|
+
"prompt.comment": "Kommentar zu %{line}: ",
|
|
181
|
+
"prompt.overall_feedback": "Gesamtfeedback: ",
|
|
182
|
+
"panel.no_changes": "Keine Anderungen zu prufen.",
|
|
183
|
+
"panel.help_review": "REVIEW: [c]Kommentar [a]Genehmigen [x]Ablehnen [!]Anderungen [?]Frage [u]Ruckgangig",
|
|
184
|
+
"panel.help_stage": "STAGE: [s]tagen [d]Verwerfen | NAV: [n]achster [p]rev [Enter]Details [q]uit",
|
|
185
|
+
"panel.help_export": "EXPORT: [E] .review/session.md | [O]Gesamt | [r]Aktualisieren",
|
|
186
|
+
"panel.help_review_footer": "REVIEW: [c]Kommentar [a]Genehmigen [x]Ablehnen [!]Anderungen [?]Frage [u]Ruckgangig",
|
|
187
|
+
"panel.help_stage_footer": "STAGE: [s]tagen [d]Verwerfen | NAV: [n]achster [p]rev [Enter]Details [q]uit",
|
|
188
|
+
"panel.help_export_footer": "EXPORT: [E]xportieren nach .review/session.md | [O]Gesamt [r]Aktualisieren",
|
|
189
|
+
"debug.loaded": "Review-Diff-Plugin mit Kommentarunterstutzung geladen"
|
|
190
|
+
},
|
|
191
|
+
"fr": {
|
|
192
|
+
"cmd.review_diff": "Revoir les Differences",
|
|
193
|
+
"cmd.review_diff_desc": "Demarrer une session de revue de code",
|
|
194
|
+
"cmd.stop_review_diff": "Arreter la Revue",
|
|
195
|
+
"cmd.stop_review_diff_desc": "Arreter la session de revue",
|
|
196
|
+
"cmd.refresh_review_diff": "Actualiser les Differences",
|
|
197
|
+
"cmd.refresh_review_diff_desc": "Actualiser la liste des modifications",
|
|
198
|
+
"cmd.side_by_side_diff": "Differences Cote a Cote",
|
|
199
|
+
"cmd.side_by_side_diff_desc": "Afficher les differences du fichier actuel cote a cote",
|
|
200
|
+
"cmd.add_comment": "Revue: Ajouter un Commentaire",
|
|
201
|
+
"cmd.add_comment_desc": "Ajouter un commentaire de revue au bloc actuel",
|
|
202
|
+
"cmd.approve_hunk": "Revue: Approuver le Bloc",
|
|
203
|
+
"cmd.approve_hunk_desc": "Marquer le bloc comme approuve",
|
|
204
|
+
"cmd.reject_hunk": "Revue: Rejeter le Bloc",
|
|
205
|
+
"cmd.reject_hunk_desc": "Marquer le bloc comme rejete",
|
|
206
|
+
"cmd.needs_changes": "Revue: Modifications Requises",
|
|
207
|
+
"cmd.needs_changes_desc": "Marquer le bloc comme necessitant des modifications",
|
|
208
|
+
"cmd.question": "Revue: Question",
|
|
209
|
+
"cmd.question_desc": "Marquer le bloc avec une question",
|
|
210
|
+
"cmd.clear_status": "Revue: Effacer le Statut",
|
|
211
|
+
"cmd.clear_status_desc": "Effacer le statut de revue du bloc",
|
|
212
|
+
"cmd.overall_feedback": "Revue: Commentaire General",
|
|
213
|
+
"cmd.overall_feedback_desc": "Definir le commentaire general de la revue",
|
|
214
|
+
"cmd.export_markdown": "Revue: Exporter en Markdown",
|
|
215
|
+
"cmd.export_markdown_desc": "Exporter la revue vers .review/session.md",
|
|
216
|
+
"cmd.export_json": "Revue: Exporter en JSON",
|
|
217
|
+
"cmd.export_json_desc": "Exporter la revue vers .review/session.json",
|
|
218
|
+
"status.refreshing": "Actualisation des differences de revue...",
|
|
219
|
+
"status.updated": "Differences mises a jour. %{count} blocs trouves.",
|
|
220
|
+
"status.loading_diff": "Chargement des differences cote a cote...",
|
|
221
|
+
"status.not_git_repo": "Pas dans un depot git",
|
|
222
|
+
"status.failed_old_version": "Echec du chargement de l'ancienne version du fichier",
|
|
223
|
+
"status.failed_new_version": "Echec du chargement de la nouvelle version du fichier",
|
|
224
|
+
"status.diff_summary": "Differences cote a cote: +%{added} -%{removed} ~%{modified} | 'q' pour revenir",
|
|
225
|
+
"status.no_hunk_selected": "Aucun bloc selectionne pour le commentaire",
|
|
226
|
+
"status.comment_added": "Commentaire ajoute a %{line}",
|
|
227
|
+
"status.comment_cancelled": "Commentaire annule",
|
|
228
|
+
"status.hunk_approved": "Bloc approuve",
|
|
229
|
+
"status.hunk_rejected": "Bloc rejete",
|
|
230
|
+
"status.hunk_needs_changes": "Bloc marque comme necessitant des modifications",
|
|
231
|
+
"status.hunk_question": "Bloc marque avec une question",
|
|
232
|
+
"status.hunk_status_cleared": "Statut de revue du bloc efface",
|
|
233
|
+
"status.feedback_set": "Commentaire general defini",
|
|
234
|
+
"status.feedback_cleared": "Commentaire general efface",
|
|
235
|
+
"status.exported": "Revue exportee vers %{path}",
|
|
236
|
+
"status.generating": "Generation du flux de revue des differences...",
|
|
237
|
+
"status.review_summary": "Revue: %{count} blocs | [c]ommentaire [a]pprouver [x]rejeter [!]modifications [?]question [E]xporter",
|
|
238
|
+
"status.stopped": "Mode de revue des differences arrete.",
|
|
239
|
+
"status.no_file_open": "Aucun fichier ouvert - impossible d'afficher les differences",
|
|
240
|
+
"status.failed_git_diff": "Echec de l'obtention du diff git pour le fichier",
|
|
241
|
+
"status.no_changes": "Aucune modification dans ce fichier",
|
|
242
|
+
"status.failed_old_new_file": "Echec du chargement de l'ancienne version (le fichier est peut-etre nouveau)",
|
|
243
|
+
"prompt.comment": "Commentaire sur %{line}: ",
|
|
244
|
+
"prompt.overall_feedback": "Commentaire general: ",
|
|
245
|
+
"panel.no_changes": "Aucune modification a revoir.",
|
|
246
|
+
"panel.help_review": "REVUE: [c]ommentaire [a]pprouver [x]rejeter [!]modifications [?]question [u]annuler",
|
|
247
|
+
"panel.help_stage": "STAGE: [s]tager [d]ecarter | NAV: [n]ext [p]rev [Enter]details [q]uitter",
|
|
248
|
+
"panel.help_export": "EXPORT: [E] .review/session.md | [O]general | [r]afraichir",
|
|
249
|
+
"panel.help_review_footer": "REVUE: [c]ommentaire [a]pprouver [x]rejeter [!]modifications [?]question [u]annuler",
|
|
250
|
+
"panel.help_stage_footer": "STAGE: [s]tager [d]ecarter | NAV: [n]ext [p]rev [Enter]details [q]uitter",
|
|
251
|
+
"panel.help_export_footer": "EXPORT: [E]xporter vers .review/session.md | [O]general [r]afraichir",
|
|
252
|
+
"debug.loaded": "Plugin de revue des differences charge avec prise en charge des commentaires"
|
|
253
|
+
},
|
|
254
|
+
"ja": {
|
|
255
|
+
"cmd.review_diff": "差分レビュー",
|
|
256
|
+
"cmd.review_diff_desc": "コードレビューセッションを開始",
|
|
257
|
+
"cmd.stop_review_diff": "レビューを停止",
|
|
258
|
+
"cmd.stop_review_diff_desc": "レビューセッションを停止",
|
|
259
|
+
"cmd.refresh_review_diff": "差分を更新",
|
|
260
|
+
"cmd.refresh_review_diff_desc": "変更リストを更新",
|
|
261
|
+
"cmd.side_by_side_diff": "サイドバイサイド差分",
|
|
262
|
+
"cmd.side_by_side_diff_desc": "現在のファイルの差分を横並びで表示",
|
|
263
|
+
"cmd.add_comment": "レビュー: コメント追加",
|
|
264
|
+
"cmd.add_comment_desc": "現在のハンクにレビューコメントを追加",
|
|
265
|
+
"cmd.approve_hunk": "レビュー: ハンクを承認",
|
|
266
|
+
"cmd.approve_hunk_desc": "ハンクを承認済みとしてマーク",
|
|
267
|
+
"cmd.reject_hunk": "レビュー: ハンクを却下",
|
|
268
|
+
"cmd.reject_hunk_desc": "ハンクを却下としてマーク",
|
|
269
|
+
"cmd.needs_changes": "レビュー: 変更が必要",
|
|
270
|
+
"cmd.needs_changes_desc": "ハンクを変更が必要としてマーク",
|
|
271
|
+
"cmd.question": "レビュー: 質問",
|
|
272
|
+
"cmd.question_desc": "ハンクに質問をマーク",
|
|
273
|
+
"cmd.clear_status": "レビュー: ステータスをクリア",
|
|
274
|
+
"cmd.clear_status_desc": "ハンクのレビューステータスをクリア",
|
|
275
|
+
"cmd.overall_feedback": "レビュー: 全体フィードバック",
|
|
276
|
+
"cmd.overall_feedback_desc": "レビューの全体フィードバックを設定",
|
|
277
|
+
"cmd.export_markdown": "レビュー: Markdownにエクスポート",
|
|
278
|
+
"cmd.export_markdown_desc": "レビューを.review/session.mdにエクスポート",
|
|
279
|
+
"cmd.export_json": "レビュー: JSONにエクスポート",
|
|
280
|
+
"cmd.export_json_desc": "レビューを.review/session.jsonにエクスポート",
|
|
281
|
+
"status.refreshing": "レビュー差分を更新中...",
|
|
282
|
+
"status.updated": "レビュー差分を更新しました。%{count}個のハンクが見つかりました。",
|
|
283
|
+
"status.loading_diff": "サイドバイサイド差分を読み込み中...",
|
|
284
|
+
"status.not_git_repo": "gitリポジトリではありません",
|
|
285
|
+
"status.failed_old_version": "古いファイルバージョンの読み込みに失敗しました",
|
|
286
|
+
"status.failed_new_version": "新しいファイルバージョンの読み込みに失敗しました",
|
|
287
|
+
"status.diff_summary": "サイドバイサイド差分: +%{added} -%{removed} ~%{modified} | 'q'で戻る",
|
|
288
|
+
"status.no_hunk_selected": "コメントするハンクが選択されていません",
|
|
289
|
+
"status.comment_added": "%{line}にコメントを追加しました",
|
|
290
|
+
"status.comment_cancelled": "コメントがキャンセルされました",
|
|
291
|
+
"status.hunk_approved": "ハンクを承認しました",
|
|
292
|
+
"status.hunk_rejected": "ハンクを却下しました",
|
|
293
|
+
"status.hunk_needs_changes": "ハンクを変更が必要としてマークしました",
|
|
294
|
+
"status.hunk_question": "ハンクに質問をマークしました",
|
|
295
|
+
"status.hunk_status_cleared": "ハンクのレビューステータスをクリアしました",
|
|
296
|
+
"status.feedback_set": "全体フィードバックを設定しました",
|
|
297
|
+
"status.feedback_cleared": "全体フィードバックをクリアしました",
|
|
298
|
+
"status.exported": "レビューを%{path}にエクスポートしました",
|
|
299
|
+
"status.generating": "レビュー差分ストリームを生成中...",
|
|
300
|
+
"status.review_summary": "レビュー差分: %{count}ハンク | [c]コメント [a]承認 [x]却下 [!]変更要 [?]質問 [E]エクスポート",
|
|
301
|
+
"status.stopped": "レビュー差分モードを停止しました。",
|
|
302
|
+
"status.no_file_open": "ファイルが開かれていません - 差分を表示できません",
|
|
303
|
+
"status.failed_git_diff": "ファイルのgit差分の取得に失敗しました",
|
|
304
|
+
"status.no_changes": "このファイルに変更はありません",
|
|
305
|
+
"status.failed_old_new_file": "古いファイルバージョンの読み込みに失敗しました(新規ファイルの可能性があります)",
|
|
306
|
+
"prompt.comment": "%{line}へのコメント: ",
|
|
307
|
+
"prompt.overall_feedback": "全体フィードバック: ",
|
|
308
|
+
"panel.no_changes": "レビューする変更がありません。",
|
|
309
|
+
"panel.help_review": "レビュー: [c]コメント [a]承認 [x]却下 [!]変更要 [?]質問 [u]元に戻す",
|
|
310
|
+
"panel.help_stage": "ステージ: [s]ステージ [d]破棄 | NAV: [n]次 [p]前 [Enter]詳細 [q]終了",
|
|
311
|
+
"panel.help_export": "エクスポート: [E] .review/session.md | [O]全体 | [r]更新",
|
|
312
|
+
"panel.help_review_footer": "レビュー: [c]コメント [a]承認 [x]却下 [!]変更要 [?]質問 [u]元に戻す",
|
|
313
|
+
"panel.help_stage_footer": "ステージ: [s]ステージ [d]破棄 | NAV: [n]次 [p]前 [Enter]詳細 [q]終了",
|
|
314
|
+
"panel.help_export_footer": "エクスポート: [E]xport to .review/session.md | [O]全体 [r]更新",
|
|
315
|
+
"debug.loaded": "レビュー差分プラグインがコメントサポート付きで読み込まれました"
|
|
316
|
+
},
|
|
317
|
+
"zh": {
|
|
318
|
+
"cmd.review_diff": "审查差异",
|
|
319
|
+
"cmd.review_diff_desc": "开始代码审查会话",
|
|
320
|
+
"cmd.stop_review_diff": "停止审查",
|
|
321
|
+
"cmd.stop_review_diff_desc": "停止审查会话",
|
|
322
|
+
"cmd.refresh_review_diff": "刷新差异",
|
|
323
|
+
"cmd.refresh_review_diff_desc": "刷新更改列表",
|
|
324
|
+
"cmd.side_by_side_diff": "并排差异",
|
|
325
|
+
"cmd.side_by_side_diff_desc": "并排显示当前文件的差异",
|
|
326
|
+
"cmd.add_comment": "审查: 添加评论",
|
|
327
|
+
"cmd.add_comment_desc": "为当前代码块添加审查评论",
|
|
328
|
+
"cmd.approve_hunk": "审查: 批准代码块",
|
|
329
|
+
"cmd.approve_hunk_desc": "将代码块标记为已批准",
|
|
330
|
+
"cmd.reject_hunk": "审查: 拒绝代码块",
|
|
331
|
+
"cmd.reject_hunk_desc": "将代码块标记为已拒绝",
|
|
332
|
+
"cmd.needs_changes": "审查: 需要修改",
|
|
333
|
+
"cmd.needs_changes_desc": "将代码块标记为需要修改",
|
|
334
|
+
"cmd.question": "审查: 提问",
|
|
335
|
+
"cmd.question_desc": "为代码块标记问题",
|
|
336
|
+
"cmd.clear_status": "审查: 清除状态",
|
|
337
|
+
"cmd.clear_status_desc": "清除代码块的审查状态",
|
|
338
|
+
"cmd.overall_feedback": "审查: 总体反馈",
|
|
339
|
+
"cmd.overall_feedback_desc": "设置审查的总体反馈",
|
|
340
|
+
"cmd.export_markdown": "审查: 导出为Markdown",
|
|
341
|
+
"cmd.export_markdown_desc": "将审查导出到.review/session.md",
|
|
342
|
+
"cmd.export_json": "审查: 导出为JSON",
|
|
343
|
+
"cmd.export_json_desc": "将审查导出到.review/session.json",
|
|
344
|
+
"status.refreshing": "正在刷新审查差异...",
|
|
345
|
+
"status.updated": "审查差异已更新。找到%{count}个代码块。",
|
|
346
|
+
"status.loading_diff": "正在加载并排差异...",
|
|
347
|
+
"status.not_git_repo": "不在git仓库中",
|
|
348
|
+
"status.failed_old_version": "加载旧文件版本失败",
|
|
349
|
+
"status.failed_new_version": "加载新文件版本失败",
|
|
350
|
+
"status.diff_summary": "并排差异: +%{added} -%{removed} ~%{modified} | 按'q'返回",
|
|
351
|
+
"status.no_hunk_selected": "未选择要评论的代码块",
|
|
352
|
+
"status.comment_added": "评论已添加到%{line}",
|
|
353
|
+
"status.comment_cancelled": "评论已取消",
|
|
354
|
+
"status.hunk_approved": "代码块已批准",
|
|
355
|
+
"status.hunk_rejected": "代码块已拒绝",
|
|
356
|
+
"status.hunk_needs_changes": "代码块已标记为需要修改",
|
|
357
|
+
"status.hunk_question": "代码块已标记问题",
|
|
358
|
+
"status.hunk_status_cleared": "代码块审查状态已清除",
|
|
359
|
+
"status.feedback_set": "总体反馈已设置",
|
|
360
|
+
"status.feedback_cleared": "总体反馈已清除",
|
|
361
|
+
"status.exported": "审查已导出到%{path}",
|
|
362
|
+
"status.generating": "正在生成审查差异流...",
|
|
363
|
+
"status.review_summary": "审查差异: %{count}个代码块 | [c]评论 [a]批准 [x]拒绝 [!]修改 [?]提问 [E]导出",
|
|
364
|
+
"status.stopped": "审查差异模式已停止。",
|
|
365
|
+
"status.no_file_open": "未打开文件 - 无法显示差异",
|
|
366
|
+
"status.failed_git_diff": "获取文件的git差异失败",
|
|
367
|
+
"status.no_changes": "此文件没有更改",
|
|
368
|
+
"status.failed_old_new_file": "加载旧文件版本失败(文件可能是新建的)",
|
|
369
|
+
"prompt.comment": "在%{line}上评论: ",
|
|
370
|
+
"prompt.overall_feedback": "总体反馈: ",
|
|
371
|
+
"panel.no_changes": "没有需要审查的更改。",
|
|
372
|
+
"panel.help_review": "审查: [c]评论 [a]批准 [x]拒绝 [!]修改 [?]提问 [u]撤销",
|
|
373
|
+
"panel.help_stage": "暂存: [s]暂存 [d]丢弃 | 导航: [n]下一个 [p]上一个 [Enter]详情 [q]退出",
|
|
374
|
+
"panel.help_export": "导出: [E] .review/session.md | [O]总体 | [r]刷新",
|
|
375
|
+
"panel.help_review_footer": "审查: [c]评论 [a]批准 [x]拒绝 [!]修改 [?]提问 [u]撤销",
|
|
376
|
+
"panel.help_stage_footer": "暂存: [s]暂存 [d]丢弃 | 导航: [n]下一个 [p]上一个 [Enter]详情 [q]退出",
|
|
377
|
+
"panel.help_export_footer": "导出: [E]导出到.review/session.md | [O]总体 [r]刷新",
|
|
378
|
+
"debug.loaded": "审查差异插件已加载,支持评论功能"
|
|
379
|
+
}
|
|
380
|
+
}
|