@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
|
@@ -158,17 +158,14 @@
|
|
|
158
158
|
},
|
|
159
159
|
"default": {}
|
|
160
160
|
},
|
|
161
|
-
"
|
|
162
|
-
"description": "
|
|
163
|
-
"
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
"type": "null"
|
|
169
|
-
}
|
|
161
|
+
"default_language": {
|
|
162
|
+
"description": "Default language for files whose type cannot be detected.\nMust reference a key in the `languages` map (e.g., \"bash\").\nApplied when no extension, filename, glob, or built-in detection matches.\nThe referenced language's full configuration (grammar, comment_prefix,\ntab_size, etc.) is used for unrecognized files.",
|
|
163
|
+
"type": [
|
|
164
|
+
"string",
|
|
165
|
+
"null"
|
|
170
166
|
],
|
|
171
|
-
"default": null
|
|
167
|
+
"default": null,
|
|
168
|
+
"x-enum-from": "/languages"
|
|
172
169
|
},
|
|
173
170
|
"lsp": {
|
|
174
171
|
"description": "LSP server configurations by language.\nEach language maps to one or more server configs (multi-LSP support).\nAccepts both single-object and array forms for backwards compatibility.",
|
|
@@ -178,6 +175,14 @@
|
|
|
178
175
|
},
|
|
179
176
|
"default": {}
|
|
180
177
|
},
|
|
178
|
+
"universal_lsp": {
|
|
179
|
+
"description": "Universal LSP servers that apply to all languages.\nThese servers run alongside language-specific LSP servers defined in `lsp`.\nKeyed by a unique server name (e.g. \"quicklsp\").",
|
|
180
|
+
"type": "object",
|
|
181
|
+
"additionalProperties": {
|
|
182
|
+
"$ref": "#/$defs/LspLanguageConfig"
|
|
183
|
+
},
|
|
184
|
+
"default": {}
|
|
185
|
+
},
|
|
181
186
|
"warnings": {
|
|
182
187
|
"description": "Warning notification settings",
|
|
183
188
|
"$ref": "#/$defs/WarningsConfig",
|
|
@@ -921,11 +926,6 @@
|
|
|
921
926
|
],
|
|
922
927
|
"default": null
|
|
923
928
|
},
|
|
924
|
-
"highlighter": {
|
|
925
|
-
"description": "Preferred highlighter backend (auto, tree-sitter, or textmate)",
|
|
926
|
-
"$ref": "#/$defs/HighlighterPreference",
|
|
927
|
-
"default": "auto"
|
|
928
|
-
},
|
|
929
929
|
"textmate_grammar": {
|
|
930
930
|
"description": "Path to custom TextMate grammar file (optional)\nIf specified, this grammar will be used when highlighter is \"textmate\"",
|
|
931
931
|
"type": [
|
|
@@ -1029,26 +1029,6 @@
|
|
|
1029
1029
|
},
|
|
1030
1030
|
"x-display-field": "/grammar"
|
|
1031
1031
|
},
|
|
1032
|
-
"HighlighterPreference": {
|
|
1033
|
-
"description": "Preference for which syntax highlighting backend to use",
|
|
1034
|
-
"oneOf": [
|
|
1035
|
-
{
|
|
1036
|
-
"description": "Use tree-sitter if available, fall back to TextMate",
|
|
1037
|
-
"type": "string",
|
|
1038
|
-
"const": "auto"
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
"description": "Force tree-sitter only (no highlighting if unavailable)",
|
|
1042
|
-
"type": "string",
|
|
1043
|
-
"const": "tree-sitter"
|
|
1044
|
-
},
|
|
1045
|
-
{
|
|
1046
|
-
"description": "Force TextMate grammar (skip tree-sitter even if available)",
|
|
1047
|
-
"type": "string",
|
|
1048
|
-
"const": "textmate"
|
|
1049
|
-
}
|
|
1050
|
-
]
|
|
1051
|
-
},
|
|
1052
1032
|
"FormatterConfig": {
|
|
1053
1033
|
"description": "Formatter configuration for a language",
|
|
1054
1034
|
"type": "object",
|
package/plugins/lib/fresh.d.ts
CHANGED
|
@@ -156,6 +156,12 @@ type TsCreateCompositeBufferOptions = {
|
|
|
156
156
|
* Diff hunks for alignment (optional)
|
|
157
157
|
*/
|
|
158
158
|
hunks: Array<TsCompositeHunk> | null;
|
|
159
|
+
/**
|
|
160
|
+
* When set, the first render will scroll to center the Nth hunk (0-indexed).
|
|
161
|
+
* This avoids timing issues with imperative scroll commands that depend on
|
|
162
|
+
* render-created state (viewport dimensions, view state).
|
|
163
|
+
*/
|
|
164
|
+
initialFocusHunk?: number;
|
|
159
165
|
};
|
|
160
166
|
type ViewportInfo = {
|
|
161
167
|
/**
|
|
@@ -525,6 +531,24 @@ type InlineOverlay = {
|
|
|
525
531
|
*/
|
|
526
532
|
properties?: Record<string, any>;
|
|
527
533
|
};
|
|
534
|
+
type GrammarInfoSnapshot = {
|
|
535
|
+
/**
|
|
536
|
+
* The grammar name as used in config files (case-insensitive matching)
|
|
537
|
+
*/
|
|
538
|
+
name: string;
|
|
539
|
+
/**
|
|
540
|
+
* Where this grammar was loaded from (e.g. "built-in", "plugin (myplugin)")
|
|
541
|
+
*/
|
|
542
|
+
source: string;
|
|
543
|
+
/**
|
|
544
|
+
* File extensions associated with this grammar
|
|
545
|
+
*/
|
|
546
|
+
file_extensions: Array<string>;
|
|
547
|
+
/**
|
|
548
|
+
* Optional short name alias (e.g., "bash" for "Bourne Again Shell (bash)")
|
|
549
|
+
*/
|
|
550
|
+
short_name: string | null;
|
|
551
|
+
};
|
|
528
552
|
type BackgroundProcessResult = {
|
|
529
553
|
/**
|
|
530
554
|
* Unique process ID for later reference
|
|
@@ -812,6 +836,10 @@ interface EditorAPI {
|
|
|
812
836
|
* List all open buffers - returns array of BufferInfo objects
|
|
813
837
|
*/
|
|
814
838
|
listBuffers(): BufferInfo[];
|
|
839
|
+
/**
|
|
840
|
+
* List all available grammars with source info - returns array of GrammarInfo objects
|
|
841
|
+
*/
|
|
842
|
+
listGrammars(): GrammarInfoSnapshot[];
|
|
815
843
|
debug(msg: string): void;
|
|
816
844
|
info(msg: string): void;
|
|
817
845
|
warn(msg: string): void;
|
|
@@ -1169,6 +1197,20 @@ interface EditorAPI {
|
|
|
1169
1197
|
*/
|
|
1170
1198
|
closeCompositeBuffer(bufferId: number): boolean;
|
|
1171
1199
|
/**
|
|
1200
|
+
* Force-materialize render-dependent state (like `layoutIfNeeded` in UIKit).
|
|
1201
|
+
* After calling this, commands that depend on view state created during
|
|
1202
|
+
* rendering (e.g., `compositeNextHunk`) will work correctly.
|
|
1203
|
+
*/
|
|
1204
|
+
flushLayout(): boolean;
|
|
1205
|
+
/**
|
|
1206
|
+
* Navigate to the next hunk in a composite buffer
|
|
1207
|
+
*/
|
|
1208
|
+
compositeNextHunk(bufferId: number): boolean;
|
|
1209
|
+
/**
|
|
1210
|
+
* Navigate to the previous hunk in a composite buffer
|
|
1211
|
+
*/
|
|
1212
|
+
compositePrevHunk(bufferId: number): boolean;
|
|
1213
|
+
/**
|
|
1172
1214
|
* Request syntax highlights for a buffer range (async)
|
|
1173
1215
|
*/
|
|
1174
1216
|
getHighlights(bufferId: number, start: number, end: number): Promise<TsHighlightSpan[]>;
|
|
@@ -12,6 +12,8 @@ export interface VirtualBufferOptions {
|
|
|
12
12
|
entries: TextPropertyEntry[];
|
|
13
13
|
/** Whether to show line numbers (default false) */
|
|
14
14
|
showLineNumbers?: boolean;
|
|
15
|
+
/** Whether to show cursors (default true) */
|
|
16
|
+
showCursors?: boolean;
|
|
15
17
|
/** Whether editing is disabled (default true) */
|
|
16
18
|
editingDisabled?: boolean;
|
|
17
19
|
/** Whether buffer is read-only (default true) */
|
|
@@ -55,6 +57,7 @@ export function createVirtualBufferFactory(editor: EditorAPI) {
|
|
|
55
57
|
mode,
|
|
56
58
|
entries,
|
|
57
59
|
showLineNumbers = false,
|
|
60
|
+
showCursors,
|
|
58
61
|
editingDisabled = true,
|
|
59
62
|
readOnly = true,
|
|
60
63
|
} = options;
|
|
@@ -65,6 +68,7 @@ export function createVirtualBufferFactory(editor: EditorAPI) {
|
|
|
65
68
|
readOnly,
|
|
66
69
|
entries,
|
|
67
70
|
showLineNumbers,
|
|
71
|
+
showCursors,
|
|
68
72
|
editingDisabled,
|
|
69
73
|
});
|
|
70
74
|
return result.bufferId;
|
|
@@ -79,6 +83,7 @@ export function createVirtualBufferFactory(editor: EditorAPI) {
|
|
|
79
83
|
mode,
|
|
80
84
|
entries,
|
|
81
85
|
showLineNumbers = false,
|
|
86
|
+
showCursors,
|
|
82
87
|
editingDisabled = true,
|
|
83
88
|
readOnly = true,
|
|
84
89
|
} = options;
|
|
@@ -90,6 +95,7 @@ export function createVirtualBufferFactory(editor: EditorAPI) {
|
|
|
90
95
|
entries,
|
|
91
96
|
splitId,
|
|
92
97
|
showLineNumbers,
|
|
98
|
+
showCursors,
|
|
93
99
|
editingDisabled,
|
|
94
100
|
});
|
|
95
101
|
return result.bufferId;
|
|
@@ -106,6 +112,7 @@ export function createVirtualBufferFactory(editor: EditorAPI) {
|
|
|
106
112
|
ratio = 0.3,
|
|
107
113
|
panelId,
|
|
108
114
|
showLineNumbers = false,
|
|
115
|
+
showCursors,
|
|
109
116
|
editingDisabled = true,
|
|
110
117
|
readOnly = true,
|
|
111
118
|
} = options;
|
|
@@ -118,6 +125,7 @@ export function createVirtualBufferFactory(editor: EditorAPI) {
|
|
|
118
125
|
ratio,
|
|
119
126
|
panelId,
|
|
120
127
|
showLineNumbers,
|
|
128
|
+
showCursors,
|
|
121
129
|
editingDisabled,
|
|
122
130
|
});
|
|
123
131
|
return result.bufferId;
|
|
@@ -270,6 +270,14 @@
|
|
|
270
270
|
"null"
|
|
271
271
|
],
|
|
272
272
|
"default": null
|
|
273
|
+
},
|
|
274
|
+
"shortName": {
|
|
275
|
+
"description": "Optional short name alias for this grammar (e.g., \"hare\").\nMust be unique across all grammars; collisions are rejected with a warning.",
|
|
276
|
+
"type": [
|
|
277
|
+
"string",
|
|
278
|
+
"null"
|
|
279
|
+
],
|
|
280
|
+
"default": null
|
|
273
281
|
}
|
|
274
282
|
},
|
|
275
283
|
"required": [
|
|
@@ -302,7 +302,11 @@
|
|
|
302
302
|
"field.punctuation_delimiter": "oddělovač",
|
|
303
303
|
"field.punctuation_delimiter_desc": "oddělovačs (;, ,, .)",
|
|
304
304
|
"suggestion.current_builtin": "(aktuální · vestavěný · pouze pro čtení)",
|
|
305
|
-
"prompt.save_as_builtin_error": "Nelze přepsat vestavěný motiv, zvolte jiný název: "
|
|
305
|
+
"prompt.save_as_builtin_error": "Nelze přepsat vestavěný motiv, zvolte jiný název: ",
|
|
306
|
+
"field.diff_add_highlight_bg": "Zvýraznění přidaného diff",
|
|
307
|
+
"field.diff_add_highlight_bg_desc": "Zvýraznění na úrovni slov pro přidaný obsah",
|
|
308
|
+
"field.diff_remove_highlight_bg": "Zvýraznění odebraného diff",
|
|
309
|
+
"field.diff_remove_highlight_bg_desc": "Zvýraznění na úrovni slov pro odebraný obsah"
|
|
306
310
|
},
|
|
307
311
|
"de": {
|
|
308
312
|
"cmd.edit_theme": "Theme bearbeiten",
|
|
@@ -572,6 +576,10 @@
|
|
|
572
576
|
"field.diff_add_bg_desc": "Diff added line background",
|
|
573
577
|
"field.diff_remove_bg": "Diff Removed Background",
|
|
574
578
|
"field.diff_remove_bg_desc": "Diff removed line background",
|
|
579
|
+
"field.diff_add_highlight_bg": "Diff Hinzugefügt Hervorhebung",
|
|
580
|
+
"field.diff_add_highlight_bg_desc": "Wort-Hervorhebung für hinzugefügten Inhalt",
|
|
581
|
+
"field.diff_remove_highlight_bg": "Diff Entfernt Hervorhebung",
|
|
582
|
+
"field.diff_remove_highlight_bg_desc": "Wort-Hervorhebung für entfernten Inhalt",
|
|
575
583
|
"field.diff_modify_bg": "Diff Modified Background",
|
|
576
584
|
"field.diff_modify_bg_desc": "Diff modified line background",
|
|
577
585
|
"field.status_warning_indicator_bg": "Warning Indicator Background",
|
|
@@ -741,6 +749,10 @@
|
|
|
741
749
|
"field.diff_add_bg_desc": "Diff added line background",
|
|
742
750
|
"field.diff_remove_bg": "Diff Removed Background",
|
|
743
751
|
"field.diff_remove_bg_desc": "Diff removed line background",
|
|
752
|
+
"field.diff_add_highlight_bg": "Diff Added Highlight",
|
|
753
|
+
"field.diff_add_highlight_bg_desc": "Word-level highlight for added content",
|
|
754
|
+
"field.diff_remove_highlight_bg": "Diff Removed Highlight",
|
|
755
|
+
"field.diff_remove_highlight_bg_desc": "Word-level highlight for removed content",
|
|
744
756
|
"field.diff_modify_bg": "Diff Modified Background",
|
|
745
757
|
"field.diff_modify_bg_desc": "Diff modified line background",
|
|
746
758
|
"field.tab_active_fg": "Active Tab Foreground",
|
|
@@ -1182,6 +1194,10 @@
|
|
|
1182
1194
|
"field.diff_add_bg_desc": "Diff added line background",
|
|
1183
1195
|
"field.diff_remove_bg": "Diff Removed Background",
|
|
1184
1196
|
"field.diff_remove_bg_desc": "Diff removed line background",
|
|
1197
|
+
"field.diff_add_highlight_bg": "Resaltado Diff Añadido",
|
|
1198
|
+
"field.diff_add_highlight_bg_desc": "Resaltado a nivel de palabra para contenido añadido",
|
|
1199
|
+
"field.diff_remove_highlight_bg": "Resaltado Diff Eliminado",
|
|
1200
|
+
"field.diff_remove_highlight_bg_desc": "Resaltado a nivel de palabra para contenido eliminado",
|
|
1185
1201
|
"field.diff_modify_bg": "Diff Modified Background",
|
|
1186
1202
|
"field.diff_modify_bg_desc": "Diff modified line background",
|
|
1187
1203
|
"field.status_warning_indicator_bg": "Warning Indicator Background",
|
|
@@ -1487,6 +1503,10 @@
|
|
|
1487
1503
|
"field.diff_add_bg_desc": "Diff added line background",
|
|
1488
1504
|
"field.diff_remove_bg": "Diff Removed Background",
|
|
1489
1505
|
"field.diff_remove_bg_desc": "Diff removed line background",
|
|
1506
|
+
"field.diff_add_highlight_bg": "Surlignage Diff Ajouté",
|
|
1507
|
+
"field.diff_add_highlight_bg_desc": "Surlignage au niveau des mots pour le contenu ajouté",
|
|
1508
|
+
"field.diff_remove_highlight_bg": "Surlignage Diff Supprimé",
|
|
1509
|
+
"field.diff_remove_highlight_bg_desc": "Surlignage au niveau des mots pour le contenu supprimé",
|
|
1490
1510
|
"field.diff_modify_bg": "Diff Modified Background",
|
|
1491
1511
|
"field.diff_modify_bg_desc": "Diff modified line background",
|
|
1492
1512
|
"field.status_warning_indicator_bg": "Warning Indicator Background",
|
|
@@ -1792,6 +1812,10 @@
|
|
|
1792
1812
|
"field.diff_add_bg_desc": "Diff added line background",
|
|
1793
1813
|
"field.diff_remove_bg": "Diff Removed Background",
|
|
1794
1814
|
"field.diff_remove_bg_desc": "Diff removed line background",
|
|
1815
|
+
"field.diff_add_highlight_bg": "Diff追加ハイライト",
|
|
1816
|
+
"field.diff_add_highlight_bg_desc": "追加コンテンツの単語レベルハイライト",
|
|
1817
|
+
"field.diff_remove_highlight_bg": "Diff削除ハイライト",
|
|
1818
|
+
"field.diff_remove_highlight_bg_desc": "削除コンテンツの単語レベルハイライト",
|
|
1795
1819
|
"field.diff_modify_bg": "Diff Modified Background",
|
|
1796
1820
|
"field.diff_modify_bg_desc": "Diff modified line background",
|
|
1797
1821
|
"field.status_warning_indicator_bg": "Warning Indicator Background",
|
|
@@ -2132,7 +2156,11 @@
|
|
|
2132
2156
|
"field.punctuation_delimiter": "구분자",
|
|
2133
2157
|
"field.punctuation_delimiter_desc": "구분자s (;, ,, .)",
|
|
2134
2158
|
"suggestion.current_builtin": "(현재 · 기본 제공 · 읽기 전용)",
|
|
2135
|
-
"prompt.save_as_builtin_error": "기본 제공 테마를 덮어쓸 수 없습니다. 다른 이름을 입력하세요: "
|
|
2159
|
+
"prompt.save_as_builtin_error": "기본 제공 테마를 덮어쓸 수 없습니다. 다른 이름을 입력하세요: ",
|
|
2160
|
+
"field.diff_add_highlight_bg": "Diff 추가 하이라이트",
|
|
2161
|
+
"field.diff_add_highlight_bg_desc": "추가된 콘텐츠의 단어 수준 하이라이트",
|
|
2162
|
+
"field.diff_remove_highlight_bg": "Diff 삭제 하이라이트",
|
|
2163
|
+
"field.diff_remove_highlight_bg_desc": "삭제된 콘텐츠의 단어 수준 하이라이트"
|
|
2136
2164
|
},
|
|
2137
2165
|
"pt-BR": {
|
|
2138
2166
|
"cmd.edit_theme": "editar Theme",
|
|
@@ -2437,7 +2465,11 @@
|
|
|
2437
2465
|
"field.punctuation_delimiter": "delimitador",
|
|
2438
2466
|
"field.punctuation_delimiter_desc": "delimitadors (;, ,, .)",
|
|
2439
2467
|
"suggestion.current_builtin": "(atual · integrado · somente leitura)",
|
|
2440
|
-
"prompt.save_as_builtin_error": "Não é possível sobrescrever tema integrado, escolha outro nome: "
|
|
2468
|
+
"prompt.save_as_builtin_error": "Não é possível sobrescrever tema integrado, escolha outro nome: ",
|
|
2469
|
+
"field.diff_add_highlight_bg": "Destaque Diff Adicionado",
|
|
2470
|
+
"field.diff_add_highlight_bg_desc": "Destaque a nível de palavra para conteúdo adicionado",
|
|
2471
|
+
"field.diff_remove_highlight_bg": "Destaque Diff Removido",
|
|
2472
|
+
"field.diff_remove_highlight_bg_desc": "Destaque a nível de palavra para conteúdo removido"
|
|
2441
2473
|
},
|
|
2442
2474
|
"ru": {
|
|
2443
2475
|
"cmd.edit_theme": "редактировать Theme",
|
|
@@ -2742,7 +2774,11 @@
|
|
|
2742
2774
|
"field.punctuation_delimiter": "разделитель",
|
|
2743
2775
|
"field.punctuation_delimiter_desc": "разделительs (;, ,, .)",
|
|
2744
2776
|
"suggestion.current_builtin": "(текущий · встроенная · только чтение)",
|
|
2745
|
-
"prompt.save_as_builtin_error": "Невозможно перезаписать встроенную тему, выберите другое имя: "
|
|
2777
|
+
"prompt.save_as_builtin_error": "Невозможно перезаписать встроенную тему, выберите другое имя: ",
|
|
2778
|
+
"field.diff_add_highlight_bg": "Подсветка добавленного Diff",
|
|
2779
|
+
"field.diff_add_highlight_bg_desc": "Пословная подсветка добавленного содержимого",
|
|
2780
|
+
"field.diff_remove_highlight_bg": "Подсветка удалённого Diff",
|
|
2781
|
+
"field.diff_remove_highlight_bg_desc": "Пословная подсветка удалённого содержимого"
|
|
2746
2782
|
},
|
|
2747
2783
|
"th": {
|
|
2748
2784
|
"cmd.edit_theme": "แก้ไข Theme",
|
|
@@ -3047,7 +3083,11 @@
|
|
|
3047
3083
|
"field.punctuation_delimiter": "ตัวคั่น",
|
|
3048
3084
|
"field.punctuation_delimiter_desc": "ตัวคั่นs (;, ,, .)",
|
|
3049
3085
|
"suggestion.current_builtin": "(ปัจจุบัน · ในตัว · อ่านอย่างเดียว)",
|
|
3050
|
-
"prompt.save_as_builtin_error": "ไม่สามารถเขียนทับธีมในตัวได้ กรุณาเลือกชื่ออื่น: "
|
|
3086
|
+
"prompt.save_as_builtin_error": "ไม่สามารถเขียนทับธีมในตัวได้ กรุณาเลือกชื่ออื่น: ",
|
|
3087
|
+
"field.diff_add_highlight_bg": "ไฮไลท์ Diff เพิ่ม",
|
|
3088
|
+
"field.diff_add_highlight_bg_desc": "ไฮไลท์ระดับคำสำหรับเนื้อหาที่เพิ่ม",
|
|
3089
|
+
"field.diff_remove_highlight_bg": "ไฮไลท์ Diff ลบ",
|
|
3090
|
+
"field.diff_remove_highlight_bg_desc": "ไฮไลท์ระดับคำสำหรับเนื้อหาที่ลบ"
|
|
3051
3091
|
},
|
|
3052
3092
|
"uk": {
|
|
3053
3093
|
"cmd.edit_theme": "редагувати Theme",
|
|
@@ -3352,7 +3392,11 @@
|
|
|
3352
3392
|
"field.punctuation_delimiter": "роздільник",
|
|
3353
3393
|
"field.punctuation_delimiter_desc": "роздільникs (;, ,, .)",
|
|
3354
3394
|
"suggestion.current_builtin": "(поточний · вбудована · лише читання)",
|
|
3355
|
-
"prompt.save_as_builtin_error": "Неможливо перезаписати вбудовану тему, виберіть іншу назву: "
|
|
3395
|
+
"prompt.save_as_builtin_error": "Неможливо перезаписати вбудовану тему, виберіть іншу назву: ",
|
|
3396
|
+
"field.diff_add_highlight_bg": "Підсвітка доданого Diff",
|
|
3397
|
+
"field.diff_add_highlight_bg_desc": "Пословна підсвітка доданого вмісту",
|
|
3398
|
+
"field.diff_remove_highlight_bg": "Підсвітка видаленого Diff",
|
|
3399
|
+
"field.diff_remove_highlight_bg_desc": "Пословна підсвітка видаленого вмісту"
|
|
3356
3400
|
},
|
|
3357
3401
|
"vi": {
|
|
3358
3402
|
"cmd.edit_theme": "Chỉnh sửa giao diện",
|
|
@@ -3657,7 +3701,11 @@
|
|
|
3657
3701
|
"field.punctuation_delimiter": "Dấu phân cách",
|
|
3658
3702
|
"field.punctuation_delimiter_desc": "Dấu phân cách (;, ,, .)",
|
|
3659
3703
|
"suggestion.current_builtin": "(hiện tại · có sẵn · chỉ đọc)",
|
|
3660
|
-
"prompt.save_as_builtin_error": "Không thể ghi đè chủ đề có sẵn, chọn tên khác: "
|
|
3704
|
+
"prompt.save_as_builtin_error": "Không thể ghi đè chủ đề có sẵn, chọn tên khác: ",
|
|
3705
|
+
"field.diff_add_highlight_bg": "Tô sáng Diff thêm",
|
|
3706
|
+
"field.diff_add_highlight_bg_desc": "Tô sáng mức từ cho nội dung được thêm",
|
|
3707
|
+
"field.diff_remove_highlight_bg": "Tô sáng Diff xóa",
|
|
3708
|
+
"field.diff_remove_highlight_bg_desc": "Tô sáng mức từ cho nội dung bị xóa"
|
|
3661
3709
|
},
|
|
3662
3710
|
"zh-CN": {
|
|
3663
3711
|
"cmd.edit_theme": "编辑主题",
|
|
@@ -3927,6 +3975,10 @@
|
|
|
3927
3975
|
"field.diff_add_bg_desc": "Diff added line background",
|
|
3928
3976
|
"field.diff_remove_bg": "Diff Removed Background",
|
|
3929
3977
|
"field.diff_remove_bg_desc": "Diff removed line background",
|
|
3978
|
+
"field.diff_add_highlight_bg": "Diff添加高亮",
|
|
3979
|
+
"field.diff_add_highlight_bg_desc": "添加内容的词级高亮",
|
|
3980
|
+
"field.diff_remove_highlight_bg": "Diff删除高亮",
|
|
3981
|
+
"field.diff_remove_highlight_bg_desc": "删除内容的词级高亮",
|
|
3930
3982
|
"field.diff_modify_bg": "Diff Modified Background",
|
|
3931
3983
|
"field.diff_modify_bg_desc": "Diff modified line background",
|
|
3932
3984
|
"field.status_warning_indicator_bg": "Warning Indicator Background",
|
|
@@ -4267,6 +4319,10 @@
|
|
|
4267
4319
|
"field.punctuation_delimiter": "Delimitatore",
|
|
4268
4320
|
"field.punctuation_delimiter_desc": "Delimitatori e separatori (;, ,, .)",
|
|
4269
4321
|
"suggestion.current_builtin": "(corrente · integrato · sola lettura)",
|
|
4270
|
-
"prompt.save_as_builtin_error": "Impossibile sovrascrivere il tema integrato, scegli un altro nome: "
|
|
4322
|
+
"prompt.save_as_builtin_error": "Impossibile sovrascrivere il tema integrato, scegli un altro nome: ",
|
|
4323
|
+
"field.diff_add_highlight_bg": "Evidenziazione Diff Aggiunta",
|
|
4324
|
+
"field.diff_add_highlight_bg_desc": "Evidenziazione a livello di parola per contenuto aggiunto",
|
|
4325
|
+
"field.diff_remove_highlight_bg": "Evidenziazione Diff Rimossa",
|
|
4326
|
+
"field.diff_remove_highlight_bg_desc": "Evidenziazione a livello di parola per contenuto rimosso"
|
|
4271
4327
|
}
|
|
4272
4328
|
}
|