@fresh-editor/fresh-editor 0.2.21 → 0.2.22
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 +45 -1
- package/package.json +1 -1
- package/plugins/audit_mode.i18n.json +57 -15
- package/plugins/audit_mode.ts +907 -628
- package/plugins/config-schema.json +15 -35
- package/plugins/lib/fresh.d.ts +42 -0
- package/plugins/lib/virtual-buffer-factory.ts +8 -0
- package/plugins/schemas/package.schema.json +8 -0
- package/plugins/theme_editor.i18n.json +64 -8
- package/plugins/theme_editor.ts +107 -119
- package/themes/dark.json +5 -3
- package/themes/dracula.json +7 -2
- package/themes/high-contrast.json +6 -4
- package/themes/light.json +7 -2
- package/themes/nord.json +14 -9
- package/themes/nostalgia.json +1 -1
- package/themes/solarized-dark.json +16 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
|
+
## 0.2.22
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **Review Diff Rewrite**: The review diff view has been rewritten with a magit-style split-panel UI. The left panel lists files grouped by staged/unstaged/untracked sections (sorted by category), and the right panel shows the diff for the selected file. Navigate with arrow keys, switch focus between panels with Tab, and drill down into individual files. Hunk navigation jumps between changes with auto-centering. Untracked and newly added files are now shown correctly. Diff colors are now theme-aware with per-theme highlight overrides.
|
|
8
|
+
|
|
9
|
+
* **Remote Mode**: SSH connections now auto-reconnect in the background with a disconnected indicator in the status bar. Filesystem operations no longer block the event loop. File explorer roots at the provided remote path instead of the home directory. File finder (Ctrl+P) works on remote filesystems. Error messages are cleaner — hints about SSH installation, and a "Connecting via SSH to ..." message on startup.
|
|
10
|
+
|
|
11
|
+
### Improvements
|
|
12
|
+
|
|
13
|
+
* **Create Directories on Save**: When saving a file to a path where the parent directory doesn't exist, Fresh now prompts to create the directory instead of failing (#1434).
|
|
14
|
+
|
|
15
|
+
* **Grammar Short Name Aliases**: Grammars can now be referenced by short names (e.g., `"bash"` instead of `"Bourne Again Shell (bash)"`) in config and the Set Language popup. Packages can declare a `shortName` in their grammar definition.
|
|
16
|
+
|
|
17
|
+
* **Default Language Setting**: The `default_language` setting replaces the previous `fallback` object. Set it to a language key (e.g., `"bash"`) so unrecognized file types use that language's full configuration (#1219).
|
|
18
|
+
|
|
19
|
+
* **AutoHotkey Syntax Highlighting**: Built-in grammar for `.ahk` and `.ahk2` files with v1/v2 command coverage.
|
|
20
|
+
|
|
21
|
+
* **Settings UI**: Added inherit/unset support for nullable settings with an Inherit button and inherited badge. The Delete key now unsets a setting override.
|
|
22
|
+
|
|
23
|
+
* **Theme Selector**: Installed theme packages now appear correctly even when multiple themes share the same name. The selector strips URL schemes and sizes the name column to content.
|
|
24
|
+
|
|
25
|
+
* **File Finder (Ctrl+P)**: Fixed showing no files on Windows when git isn't being used.
|
|
26
|
+
|
|
27
|
+
* **Selection Prompts**: Pre-filled text is now selected so typing immediately replaces it.
|
|
28
|
+
|
|
29
|
+
* **Theme Fixes**: Fixed low contrast in Nord, Solarized Dark, Light, and Dracula themes. Fixed command palette selected row using wrong foreground color. Syntax highlighting colors are now preserved in text selections.
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* Fixed out-of-memory crash caused by an infinite loop in the line-wrapping transform when indentation exceeds half the available width (#1454).
|
|
34
|
+
|
|
35
|
+
* Fixed `didOpen` notification only being sent to the first LSP server when multiple are configured for a language.
|
|
36
|
+
|
|
37
|
+
* Fixed status bar line number not updating when stepping through search matches with F3.
|
|
38
|
+
|
|
39
|
+
* Fixed `.bash_profile` appearing read-only when symlinked to a macOS library path (#1469).
|
|
40
|
+
|
|
41
|
+
* Fixed session `open-file` command failing when a session exists but its name doesn't match the socket.
|
|
42
|
+
|
|
43
|
+
* Fixed scrollbar track hover highlighting more than the hovered cell.
|
|
44
|
+
|
|
45
|
+
* Fixed self-update URL pattern not matching all release URLs.
|
|
46
|
+
|
|
3
47
|
## 0.2.21
|
|
4
48
|
|
|
5
49
|
### Features
|
|
@@ -124,7 +168,7 @@ If you use the Vim plugin please drop a note at https://github.com/sinelaw/fresh
|
|
|
124
168
|
|
|
125
169
|
* **Status Bar Language Info**: Shows "[syntax only]" when a language has no LSP config entry.
|
|
126
170
|
|
|
127
|
-
* **
|
|
171
|
+
* **Default Language**: Set `default_language` to a language key (e.g., `"bash"`) so undetected file types use that language's full configuration (#1219). Replaces the previous `fallback` object; the old key is still accepted for backwards compatibility.
|
|
128
172
|
|
|
129
173
|
* **File Deletion Uses Trash**: `removePath` now uses the system trash instead of permanent deletion.
|
|
130
174
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"en": {
|
|
3
3
|
"cmd.review_diff": "Review Diff",
|
|
4
|
-
"cmd.review_diff_desc": "
|
|
4
|
+
"cmd.review_diff_desc": "Review git status and diffs in a code review session",
|
|
5
5
|
"cmd.stop_review_diff": "Stop Review Diff",
|
|
6
6
|
"cmd.stop_review_diff_desc": "Stop the review session",
|
|
7
7
|
"cmd.refresh_review_diff": "Refresh Review Diff",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"status.feedback_cleared": "Overall feedback cleared",
|
|
46
46
|
"status.exported": "Review exported to %{path}",
|
|
47
47
|
"status.generating": "Generating Review Diff Stream...",
|
|
48
|
-
"status.review_summary": "Review Diff: %{count} hunks | [c]omment [a]pprove [
|
|
48
|
+
"status.review_summary": "Review Diff: %{count} hunks | [c]omment [a]pprove [r]efresh [e]xport",
|
|
49
49
|
"status.stopped": "Review Diff Mode stopped.",
|
|
50
50
|
"status.no_file_open": "No file open - cannot show diff",
|
|
51
51
|
"status.failed_git_diff": "Failed to get git diff for file",
|
|
@@ -60,6 +60,9 @@
|
|
|
60
60
|
"panel.help_review_footer": "REVIEW: [c]omment [a]pprove [x]reject [!]needs-changes [?]question [u]ndo",
|
|
61
61
|
"panel.help_stage_footer": "STAGE: [s]tage [d]iscard | NAV: [n]ext [p]rev [Enter]drill-down [q]uit",
|
|
62
62
|
"panel.help_export_footer": "EXPORT: [E]xport to .review/session.md | [O]verall feedback [r]efresh",
|
|
63
|
+
"section.staged": "Staged",
|
|
64
|
+
"section.unstaged": "Changes",
|
|
65
|
+
"section.untracked": "Untracked",
|
|
63
66
|
"debug.loaded": "Review Diff plugin loaded with review comments support"
|
|
64
67
|
},
|
|
65
68
|
"cs": {
|
|
@@ -108,7 +111,7 @@
|
|
|
108
111
|
"status.feedback_cleared": "Celkova zpetna vazba vymazana",
|
|
109
112
|
"status.exported": "Revize exportovana do %{path}",
|
|
110
113
|
"status.generating": "Generuji proud revize rozdilu...",
|
|
111
|
-
"status.review_summary": "Revize rozdilu: %{count} bloku | [c]
|
|
114
|
+
"status.review_summary": "Revize rozdilu: %{count} bloku | [c]omment [a]pprove [r]efresh [e]xport",
|
|
112
115
|
"status.stopped": "Rezim revize rozdilu zastaven.",
|
|
113
116
|
"status.no_file_open": "Zadny soubor neni otevreny - nelze zobrazit rozdily",
|
|
114
117
|
"status.failed_git_diff": "Nepodarilo se ziskat git diff pro soubor",
|
|
@@ -123,6 +126,9 @@
|
|
|
123
126
|
"panel.help_review_footer": "REVIZE: [c]komentar [a]schvalit [x]odmitnout [!]zmeny [?]otazka [u]zpet",
|
|
124
127
|
"panel.help_stage_footer": "STAGE: [s]tage [d]zahodit | NAV: [n]dalsi [p]redchozi [Enter]detail [q]ukoncit",
|
|
125
128
|
"panel.help_export_footer": "EXPORT: [E]xportovat do .review/session.md | [O]celkove [r]obnovit",
|
|
129
|
+
"section.staged": "Připravené změny",
|
|
130
|
+
"section.unstaged": "Upravené (nepřipravené)",
|
|
131
|
+
"section.untracked": "Nesledované soubory",
|
|
126
132
|
"debug.loaded": "Plugin revize rozdilu nacten s podporou komentaru"
|
|
127
133
|
},
|
|
128
134
|
"de": {
|
|
@@ -171,7 +177,7 @@
|
|
|
171
177
|
"status.feedback_cleared": "Gesamtfeedback geloscht",
|
|
172
178
|
"status.exported": "Review exportiert nach %{path}",
|
|
173
179
|
"status.generating": "Review-Diff-Stream wird generiert...",
|
|
174
|
-
"status.review_summary": "Review: %{count} Blocke | [c]
|
|
180
|
+
"status.review_summary": "Review: %{count} Blocke | [c]omment [a]pprove [r]efresh [e]xport",
|
|
175
181
|
"status.stopped": "Review-Diff-Modus beendet.",
|
|
176
182
|
"status.no_file_open": "Keine Datei geoffnet - kann Unterschiede nicht anzeigen",
|
|
177
183
|
"status.failed_git_diff": "Git-Diff fur Datei konnte nicht abgerufen werden",
|
|
@@ -186,6 +192,9 @@
|
|
|
186
192
|
"panel.help_review_footer": "REVIEW: [c]Kommentar [a]Genehmigen [x]Ablehnen [!]Anderungen [?]Frage [u]Ruckgangig",
|
|
187
193
|
"panel.help_stage_footer": "STAGE: [s]tagen [d]Verwerfen | NAV: [n]achster [p]rev [Enter]Details [q]uit",
|
|
188
194
|
"panel.help_export_footer": "EXPORT: [E]xportieren nach .review/session.md | [O]Gesamt [r]Aktualisieren",
|
|
195
|
+
"section.staged": "Bereitgestellte Änderungen",
|
|
196
|
+
"section.unstaged": "Geändert (nicht bereitgestellt)",
|
|
197
|
+
"section.untracked": "Nicht verfolgte Dateien",
|
|
189
198
|
"debug.loaded": "Review-Diff-Plugin mit Kommentarunterstutzung geladen"
|
|
190
199
|
},
|
|
191
200
|
"es": {
|
|
@@ -234,7 +243,7 @@
|
|
|
234
243
|
"status.feedback_cleared": "Comentario general limpiado",
|
|
235
244
|
"status.exported": "Revision exportada a %{path}",
|
|
236
245
|
"status.generating": "Generando flujo de revision de diferencias...",
|
|
237
|
-
"status.review_summary": "Revision: %{count} bloques | [c]
|
|
246
|
+
"status.review_summary": "Revision: %{count} bloques | [c]omment [a]pprove [r]efresh [e]xport",
|
|
238
247
|
"status.stopped": "Modo de revision de diferencias detenido.",
|
|
239
248
|
"status.no_file_open": "Ningun archivo abierto - no se pueden mostrar diferencias",
|
|
240
249
|
"status.failed_git_diff": "Error al obtener diferencias git del archivo",
|
|
@@ -249,6 +258,9 @@
|
|
|
249
258
|
"panel.help_review_footer": "REVISION: [c]omentar [a]probar [x]rechazar [!]cambios [?]pregunta [u]deshacer",
|
|
250
259
|
"panel.help_stage_footer": "PREPARAR: [s]tage [d]escartar | NAV: [n]ext [p]rev [Enter]detallar [q]salir",
|
|
251
260
|
"panel.help_export_footer": "EXPORTAR: [E]xportar a .review/session.md | [O]general [r]efrescar",
|
|
261
|
+
"section.staged": "Cambios preparados",
|
|
262
|
+
"section.unstaged": "Modificados (sin preparar)",
|
|
263
|
+
"section.untracked": "Archivos sin rastrear",
|
|
252
264
|
"debug.loaded": "Plugin de revision de diferencias cargado con soporte de comentarios"
|
|
253
265
|
},
|
|
254
266
|
"fr": {
|
|
@@ -297,7 +309,7 @@
|
|
|
297
309
|
"status.feedback_cleared": "Commentaire general efface",
|
|
298
310
|
"status.exported": "Revue exportee vers %{path}",
|
|
299
311
|
"status.generating": "Generation du flux de revue des differences...",
|
|
300
|
-
"status.review_summary": "Revue: %{count} blocs | [c]
|
|
312
|
+
"status.review_summary": "Revue: %{count} blocs | [c]omment [a]pprove [r]efresh [e]xport",
|
|
301
313
|
"status.stopped": "Mode de revue des differences arrete.",
|
|
302
314
|
"status.no_file_open": "Aucun fichier ouvert - impossible d'afficher les differences",
|
|
303
315
|
"status.failed_git_diff": "Echec de l'obtention du diff git pour le fichier",
|
|
@@ -312,6 +324,9 @@
|
|
|
312
324
|
"panel.help_review_footer": "REVUE: [c]ommentaire [a]pprouver [x]rejeter [!]modifications [?]question [u]annuler",
|
|
313
325
|
"panel.help_stage_footer": "STAGE: [s]tager [d]ecarter | NAV: [n]ext [p]rev [Enter]details [q]uitter",
|
|
314
326
|
"panel.help_export_footer": "EXPORT: [E]xporter vers .review/session.md | [O]general [r]afraichir",
|
|
327
|
+
"section.staged": "Modifications indexées",
|
|
328
|
+
"section.unstaged": "Modifiés (non indexés)",
|
|
329
|
+
"section.untracked": "Fichiers non suivis",
|
|
315
330
|
"debug.loaded": "Plugin de revue des differences charge avec prise en charge des commentaires"
|
|
316
331
|
},
|
|
317
332
|
"it": {
|
|
@@ -360,7 +375,7 @@
|
|
|
360
375
|
"status.feedback_cleared": "Feedback generale cancellato",
|
|
361
376
|
"status.exported": "Revisione esportata in %{path}",
|
|
362
377
|
"status.generating": "Generazione stream differenze revisione...",
|
|
363
|
-
"status.review_summary": "Differenze revisione: %{count} blocchi | [c]
|
|
378
|
+
"status.review_summary": "Differenze revisione: %{count} blocchi | [c]omment [a]pprove [r]efresh [e]xport",
|
|
364
379
|
"status.stopped": "Modalità Revisione differenze interrotta.",
|
|
365
380
|
"status.no_file_open": "Nessun file aperto - impossibile mostrare diff",
|
|
366
381
|
"status.failed_git_diff": "Impossibile ottenere il diff git per il file",
|
|
@@ -375,6 +390,9 @@
|
|
|
375
390
|
"panel.help_review_footer": "REVISIONE: [c]ommenta [a]pprova [x]rifiuta [!]richiede-modifiche [?]domanda [u]ndo",
|
|
376
391
|
"panel.help_stage_footer": "STAGE: [s]tage [d]iscard | NAV: [n]ext [p]rev [Enter]drill-down [q]uit",
|
|
377
392
|
"panel.help_export_footer": "EXPORT: [E]sporta in .review/session.md | [O]verall feedback [r]efresh",
|
|
393
|
+
"section.staged": "Modifiche preparate",
|
|
394
|
+
"section.unstaged": "Modificati (non preparati)",
|
|
395
|
+
"section.untracked": "File non tracciati",
|
|
378
396
|
"debug.loaded": "Plugin Revisione differenze caricato con supporto commenti"
|
|
379
397
|
},
|
|
380
398
|
"ja": {
|
|
@@ -423,7 +441,7 @@
|
|
|
423
441
|
"status.feedback_cleared": "全体フィードバックをクリアしました",
|
|
424
442
|
"status.exported": "レビューを%{path}にエクスポートしました",
|
|
425
443
|
"status.generating": "レビュー差分ストリームを生成中...",
|
|
426
|
-
"status.review_summary": "レビュー差分: %{count}ハンク | [c]
|
|
444
|
+
"status.review_summary": "レビュー差分: %{count}ハンク | [c]omment [a]pprove [r]efresh [e]xport",
|
|
427
445
|
"status.stopped": "レビュー差分モードを停止しました。",
|
|
428
446
|
"status.no_file_open": "ファイルが開かれていません - 差分を表示できません",
|
|
429
447
|
"status.failed_git_diff": "ファイルのgit差分の取得に失敗しました",
|
|
@@ -438,6 +456,9 @@
|
|
|
438
456
|
"panel.help_review_footer": "レビュー: [c]コメント [a]承認 [x]却下 [!]変更要 [?]質問 [u]元に戻す",
|
|
439
457
|
"panel.help_stage_footer": "ステージ: [s]ステージ [d]破棄 | NAV: [n]次 [p]前 [Enter]詳細 [q]終了",
|
|
440
458
|
"panel.help_export_footer": "エクスポート: [E]xport to .review/session.md | [O]全体 [r]更新",
|
|
459
|
+
"section.staged": "ステージ済みの変更",
|
|
460
|
+
"section.unstaged": "変更あり(未ステージ)",
|
|
461
|
+
"section.untracked": "未追跡ファイル",
|
|
441
462
|
"debug.loaded": "レビュー差分プラグインがコメントサポート付きで読み込まれました"
|
|
442
463
|
},
|
|
443
464
|
"ko": {
|
|
@@ -486,7 +507,7 @@
|
|
|
486
507
|
"status.feedback_cleared": "전체 피드백이 지워졌습니다",
|
|
487
508
|
"status.exported": "리뷰가 %{path}로 내보내졌습니다",
|
|
488
509
|
"status.generating": "리뷰 차이점 스트림 생성 중...",
|
|
489
|
-
"status.review_summary": "리뷰 차이점: %{count}개 헝크 | [c]
|
|
510
|
+
"status.review_summary": "리뷰 차이점: %{count}개 헝크 | [c]omment [a]pprove [r]efresh [e]xport",
|
|
490
511
|
"status.stopped": "리뷰 차이점 모드가 중지되었습니다.",
|
|
491
512
|
"status.no_file_open": "열린 파일이 없습니다 - 차이점을 표시할 수 없습니다",
|
|
492
513
|
"status.failed_git_diff": "파일의 git diff 가져오기 실패",
|
|
@@ -501,6 +522,9 @@
|
|
|
501
522
|
"panel.help_review_footer": "검토: [c]코멘트 [a]승인 [x]거부 [!]변경 [?]질문 [u]실행취소",
|
|
502
523
|
"panel.help_stage_footer": "스테이지: [s]테이지 [d]삭제 | NAV: [n]다음 [p]이전 [Enter]상세 [q]종료",
|
|
503
524
|
"panel.help_export_footer": "내보내기: [E]xport to .review/session.md | [O]전체 [r]새로고침",
|
|
525
|
+
"section.staged": "스테이지된 변경사항",
|
|
526
|
+
"section.unstaged": "수정됨 (스테이지 안됨)",
|
|
527
|
+
"section.untracked": "추적되지 않는 파일",
|
|
504
528
|
"debug.loaded": "리뷰 차이점 플러그인이 코멘트 지원과 함께 로드되었습니다"
|
|
505
529
|
},
|
|
506
530
|
"pt-BR": {
|
|
@@ -549,7 +573,7 @@
|
|
|
549
573
|
"status.feedback_cleared": "Feedback geral limpo",
|
|
550
574
|
"status.exported": "Revisao exportada para %{path}",
|
|
551
575
|
"status.generating": "Gerando fluxo de revisao de diferencas...",
|
|
552
|
-
"status.review_summary": "Revisao: %{count} blocos | [c]
|
|
576
|
+
"status.review_summary": "Revisao: %{count} blocos | [c]omment [a]pprove [r]efresh [e]xport",
|
|
553
577
|
"status.stopped": "Modo de revisao de diferencas parado.",
|
|
554
578
|
"status.no_file_open": "Nenhum arquivo aberto - nao e possivel mostrar diferencas",
|
|
555
579
|
"status.failed_git_diff": "Falha ao obter git diff do arquivo",
|
|
@@ -564,6 +588,9 @@
|
|
|
564
588
|
"panel.help_review_footer": "REVISAO: [c]omentar [a]provar [x]rejeitar [!]alteracoes [?]pergunta [u]desfazer",
|
|
565
589
|
"panel.help_stage_footer": "STAGE: [s]tage [d]escartar | NAV: [n]ext [p]rev [Enter]detalhar [q]sair",
|
|
566
590
|
"panel.help_export_footer": "EXPORTAR: [E]xportar para .review/session.md | [O]geral [r]atualizar",
|
|
591
|
+
"section.staged": "Alterações preparadas",
|
|
592
|
+
"section.unstaged": "Modificados (não preparados)",
|
|
593
|
+
"section.untracked": "Arquivos não rastreados",
|
|
567
594
|
"debug.loaded": "Plugin de revisao de diferencas carregado com suporte a comentarios"
|
|
568
595
|
},
|
|
569
596
|
"ru": {
|
|
@@ -612,7 +639,7 @@
|
|
|
612
639
|
"status.feedback_cleared": "Общий отзыв очищен",
|
|
613
640
|
"status.exported": "Ревью экспортировано в %{path}",
|
|
614
641
|
"status.generating": "Генерация потока ревью изменений...",
|
|
615
|
-
"status.review_summary": "Ревью: %{count} блоков | [c]
|
|
642
|
+
"status.review_summary": "Ревью: %{count} блоков | [c]omment [a]pprove [r]efresh [e]xport",
|
|
616
643
|
"status.stopped": "Режим ревью изменений остановлен.",
|
|
617
644
|
"status.no_file_open": "Файл не открыт - невозможно показать изменения",
|
|
618
645
|
"status.failed_git_diff": "Не удалось получить git diff для файла",
|
|
@@ -627,6 +654,9 @@
|
|
|
627
654
|
"panel.help_review_footer": "РЕВЬЮ: [c]комментарий [a]одобрить [x]отклонить [!]изменения [?]вопрос [u]отменить",
|
|
628
655
|
"panel.help_stage_footer": "STAGE: [s]tage [d]отбросить | NAV: [n]след [p]пред [Enter]детали [q]выход",
|
|
629
656
|
"panel.help_export_footer": "ЭКСПОРТ: [E]кспорт в .review/session.md | [O]бщий [r]обновить",
|
|
657
|
+
"section.staged": "Подготовленные изменения",
|
|
658
|
+
"section.unstaged": "Изменённые (неподготовленные)",
|
|
659
|
+
"section.untracked": "Неотслеживаемые файлы",
|
|
630
660
|
"debug.loaded": "Плагин ревью изменений загружен с поддержкой комментариев"
|
|
631
661
|
},
|
|
632
662
|
"th": {
|
|
@@ -675,7 +705,7 @@
|
|
|
675
705
|
"status.feedback_cleared": "ล้างข้อเสนอแนะโดยรวมแล้ว",
|
|
676
706
|
"status.exported": "ส่งออกการตรวจสอบไปยัง %{path} แล้ว",
|
|
677
707
|
"status.generating": "กำลังสร้างสตรีมความแตกต่างการตรวจสอบ...",
|
|
678
|
-
"status.review_summary": "ตรวจสอบ: %{count} บล็อก | [c]
|
|
708
|
+
"status.review_summary": "ตรวจสอบ: %{count} บล็อก | [c]omment [a]pprove [r]efresh [e]xport",
|
|
679
709
|
"status.stopped": "หยุดโหมดตรวจสอบความแตกต่างแล้ว",
|
|
680
710
|
"status.no_file_open": "ไม่มีไฟล์เปิดอยู่ - ไม่สามารถแสดงความแตกต่าง",
|
|
681
711
|
"status.failed_git_diff": "ไม่สามารถรับ git diff สำหรับไฟล์",
|
|
@@ -690,6 +720,9 @@
|
|
|
690
720
|
"panel.help_review_footer": "ตรวจสอบ: [c]ความคิดเห็น [a]อนุมัติ [x]ปฏิเสธ [!]แก้ไข [?]คำถาม [u]ยกเลิก",
|
|
691
721
|
"panel.help_stage_footer": "STAGE: [s]tage [d]ทิ้ง | NAV: [n]ถัดไป [p]ก่อนหน้า [Enter]รายละเอียด [q]ออก",
|
|
692
722
|
"panel.help_export_footer": "ส่งออก: [E]xport to .review/session.md | [O]โดยรวม [r]รีเฟรช",
|
|
723
|
+
"section.staged": "การเปลี่ยนแปลงที่จัดเตรียมแล้ว",
|
|
724
|
+
"section.unstaged": "แก้ไขแล้ว (ยังไม่จัดเตรียม)",
|
|
725
|
+
"section.untracked": "ไฟล์ที่ไม่ได้ติดตาม",
|
|
693
726
|
"debug.loaded": "โหลดปลั๊กอินตรวจสอบความแตกต่างพร้อมรองรับความคิดเห็นแล้ว"
|
|
694
727
|
},
|
|
695
728
|
"uk": {
|
|
@@ -738,7 +771,7 @@
|
|
|
738
771
|
"status.feedback_cleared": "Загальний відгук очищено",
|
|
739
772
|
"status.exported": "Рев'ю експортовано до %{path}",
|
|
740
773
|
"status.generating": "Генерація потоку змін рев'ю...",
|
|
741
|
-
"status.review_summary": "Рев'ю: %{count} блоків | [c]
|
|
774
|
+
"status.review_summary": "Рев'ю: %{count} блоків | [c]omment [a]pprove [r]efresh [e]xport",
|
|
742
775
|
"status.stopped": "Режим рев'ю змін зупинено.",
|
|
743
776
|
"status.no_file_open": "Файл не відкрито - неможливо показати зміни",
|
|
744
777
|
"status.failed_git_diff": "Не вдалося отримати git diff для файлу",
|
|
@@ -753,6 +786,9 @@
|
|
|
753
786
|
"panel.help_review_footer": "РЕВ'Ю: [c]коментар [a]схвалити [x]відхилити [!]зміни [?]питання [u]скасувати",
|
|
754
787
|
"panel.help_stage_footer": "STAGE: [s]tage [d]відкинути | NAV: [n]наст [p]попер [Enter]деталі [q]вихід",
|
|
755
788
|
"panel.help_export_footer": "ЕКСПОРТ: [E]кспорт до .review/session.md | [O]загальний [r]оновити",
|
|
789
|
+
"section.staged": "Підготовлені зміни",
|
|
790
|
+
"section.unstaged": "Змінені (непідготовлені)",
|
|
791
|
+
"section.untracked": "Невідстежувані файли",
|
|
756
792
|
"debug.loaded": "Плагін рев'ю змін завантажено з підтримкою коментарів"
|
|
757
793
|
},
|
|
758
794
|
"vi": {
|
|
@@ -801,7 +837,7 @@
|
|
|
801
837
|
"status.feedback_cleared": "Đã xóa phản hồi tổng thể",
|
|
802
838
|
"status.exported": "Đã xuất xem xét ra %{path}",
|
|
803
839
|
"status.generating": "Đang tạo luồng khác biệt xem xét...",
|
|
804
|
-
"status.review_summary": "Xem xét: %{count} khối | [c]
|
|
840
|
+
"status.review_summary": "Xem xét: %{count} khối | [c]omment [a]pprove [r]efresh [e]xport",
|
|
805
841
|
"status.stopped": "Đã dừng chế độ xem xét khác biệt.",
|
|
806
842
|
"status.no_file_open": "Không có tệp mở - không thể hiển thị khác biệt",
|
|
807
843
|
"status.failed_git_diff": "Không thể lấy git diff cho tệp",
|
|
@@ -816,6 +852,9 @@
|
|
|
816
852
|
"panel.help_review_footer": "XEM XÉT: [c]nhận xét [a]duyệt [x]từ chối [!]cần thay đổi [?]câu hỏi [u]hoàn tác",
|
|
817
853
|
"panel.help_stage_footer": "STAGE: [s]tage [d]bỏ | NAV: [n]tiếp [p]trước [Enter]chi tiết [q]thoát",
|
|
818
854
|
"panel.help_export_footer": "XUẤT: [E]xuất ra .review/session.md | [O]tổng thể [r]làm mới",
|
|
855
|
+
"section.staged": "Thay đổi đã chuẩn bị",
|
|
856
|
+
"section.unstaged": "Đã sửa đổi (chưa chuẩn bị)",
|
|
857
|
+
"section.untracked": "Tệp không được theo dõi",
|
|
819
858
|
"debug.loaded": "Plugin xem xét khác biệt đã tải với hỗ trợ nhận xét"
|
|
820
859
|
},
|
|
821
860
|
"zh-CN": {
|
|
@@ -864,7 +903,7 @@
|
|
|
864
903
|
"status.feedback_cleared": "总体反馈已清除",
|
|
865
904
|
"status.exported": "审查已导出到%{path}",
|
|
866
905
|
"status.generating": "正在生成审查差异流...",
|
|
867
|
-
"status.review_summary": "审查差异: %{count}个代码块 | [c]
|
|
906
|
+
"status.review_summary": "审查差异: %{count}个代码块 | [c]omment [a]pprove [r]efresh [e]xport",
|
|
868
907
|
"status.stopped": "审查差异模式已停止。",
|
|
869
908
|
"status.no_file_open": "未打开文件 - 无法显示差异",
|
|
870
909
|
"status.failed_git_diff": "获取文件的git差异失败",
|
|
@@ -879,6 +918,9 @@
|
|
|
879
918
|
"panel.help_review_footer": "审查: [c]评论 [a]批准 [x]拒绝 [!]修改 [?]提问 [u]撤销",
|
|
880
919
|
"panel.help_stage_footer": "暂存: [s]暂存 [d]丢弃 | 导航: [n]下一个 [p]上一个 [Enter]详情 [q]退出",
|
|
881
920
|
"panel.help_export_footer": "导出: [E]导出到.review/session.md | [O]总体 [r]刷新",
|
|
921
|
+
"section.staged": "已暂存的更改",
|
|
922
|
+
"section.unstaged": "已修改(未暂存)",
|
|
923
|
+
"section.untracked": "未跟踪的文件",
|
|
882
924
|
"debug.loaded": "审查差异插件已加载,支持评论功能"
|
|
883
925
|
}
|
|
884
926
|
}
|