@fresh-editor/fresh-editor 0.1.87 → 0.1.90

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.
@@ -30,37 +30,40 @@
30
30
  "description": "Editor behavior settings (indentation, line numbers, wrapping, etc.)",
31
31
  "$ref": "#/$defs/EditorConfig",
32
32
  "default": {
33
- "tab_size": 4,
34
- "auto_indent": true,
35
33
  "line_numbers": true,
36
34
  "relative_line_numbers": false,
37
- "scroll_offset": 3,
38
- "syntax_highlighting": true,
39
35
  "line_wrap": true,
40
- "highlight_timeout_ms": 5,
41
- "snapshot_interval": 100,
42
- "large_file_threshold_bytes": 1048576,
43
- "estimated_line_length": 80,
36
+ "syntax_highlighting": true,
37
+ "show_menu_bar": true,
38
+ "show_tab_bar": true,
39
+ "use_terminal_bg": false,
40
+ "cursor_style": "default",
41
+ "tab_size": 4,
42
+ "auto_indent": true,
43
+ "scroll_offset": 3,
44
+ "default_line_ending": "lf",
45
+ "quick_suggestions": true,
46
+ "quick_suggestions_delay_ms": 10,
47
+ "suggest_on_trigger_characters": true,
48
+ "accept_suggestion_on_enter": "on",
44
49
  "enable_inlay_hints": true,
45
50
  "enable_semantic_tokens_full": false,
46
- "recovery_enabled": true,
47
- "auto_save_interval_secs": 2,
48
- "highlight_context_bytes": 10000,
49
51
  "mouse_hover_enabled": true,
50
52
  "mouse_hover_delay_ms": 500,
51
53
  "double_click_time_ms": 500,
54
+ "recovery_enabled": true,
55
+ "auto_save_interval_secs": 2,
52
56
  "auto_revert_poll_interval_ms": 2000,
53
- "file_tree_poll_interval_ms": 3000,
54
- "default_line_ending": "lf",
55
- "cursor_style": "default",
56
57
  "keyboard_disambiguate_escape_codes": true,
57
58
  "keyboard_report_event_types": false,
58
59
  "keyboard_report_alternate_keys": true,
59
60
  "keyboard_report_all_keys_as_escape_codes": false,
60
- "quick_suggestions": true,
61
- "show_menu_bar": true,
62
- "show_tab_bar": true,
63
- "use_terminal_bg": false
61
+ "highlight_timeout_ms": 5,
62
+ "snapshot_interval": 100,
63
+ "highlight_context_bytes": 10000,
64
+ "large_file_threshold_bytes": 1048576,
65
+ "estimated_line_length": 80,
66
+ "file_tree_poll_interval_ms": 3000
64
67
  }
65
68
  },
66
69
  "file_explorer": {
@@ -141,6 +144,15 @@
141
144
  "x-standalone-category": true,
142
145
  "x-no-add": true,
143
146
  "default": {}
147
+ },
148
+ "packages": {
149
+ "description": "Package manager settings for plugin/theme installation",
150
+ "$ref": "#/$defs/PackagesConfig",
151
+ "default": {
152
+ "sources": [
153
+ "https://github.com/sinelaw/fresh-plugins-registry"
154
+ ]
155
+ }
144
156
  }
145
157
  },
146
158
  "$defs": {
@@ -177,105 +189,124 @@
177
189
  "description": "Editor behavior configuration",
178
190
  "type": "object",
179
191
  "properties": {
180
- "tab_size": {
181
- "description": "Number of spaces per tab character",
182
- "type": "integer",
183
- "format": "uint",
184
- "minimum": 0,
185
- "default": 4
186
- },
187
- "auto_indent": {
188
- "description": "Automatically indent new lines based on the previous line",
189
- "type": "boolean",
190
- "default": true
191
- },
192
192
  "line_numbers": {
193
193
  "description": "Show line numbers in the gutter (default for new buffers)",
194
194
  "type": "boolean",
195
+ "x-section": "Display",
195
196
  "default": true
196
197
  },
197
198
  "relative_line_numbers": {
198
199
  "description": "Show line numbers relative to cursor position",
199
200
  "type": "boolean",
201
+ "x-section": "Display",
200
202
  "default": false
201
203
  },
202
- "scroll_offset": {
203
- "description": "Minimum lines to keep visible above/below cursor when scrolling",
204
- "type": "integer",
205
- "format": "uint",
206
- "minimum": 0,
207
- "default": 3
204
+ "line_wrap": {
205
+ "description": "Wrap long lines to fit the window width (default for new views)",
206
+ "type": "boolean",
207
+ "x-section": "Display",
208
+ "default": true
208
209
  },
209
210
  "syntax_highlighting": {
210
211
  "description": "Enable syntax highlighting for code files",
211
212
  "type": "boolean",
213
+ "x-section": "Display",
212
214
  "default": true
213
215
  },
214
- "line_wrap": {
215
- "description": "Wrap long lines to fit the window width (default for new views)",
216
+ "show_menu_bar": {
217
+ "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",
216
218
  "type": "boolean",
219
+ "x-section": "Display",
217
220
  "default": true
218
221
  },
219
- "highlight_timeout_ms": {
220
- "description": "Maximum time in milliseconds for syntax highlighting per frame",
222
+ "show_tab_bar": {
223
+ "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",
224
+ "type": "boolean",
225
+ "x-section": "Display",
226
+ "default": true
227
+ },
228
+ "use_terminal_bg": {
229
+ "description": "Use the terminal's default background color instead of the theme's editor background.\nWhen enabled, the editor background inherits from the terminal emulator,\nallowing transparency or custom terminal backgrounds to show through.\nDefault: false",
230
+ "type": "boolean",
231
+ "x-section": "Display",
232
+ "default": false
233
+ },
234
+ "cursor_style": {
235
+ "description": "Cursor style for the terminal cursor.\nOptions: blinking_block, steady_block, blinking_bar, steady_bar, blinking_underline, steady_underline\nDefault: blinking_block",
236
+ "$ref": "#/$defs/CursorStyle",
237
+ "x-section": "Display",
238
+ "default": "default"
239
+ },
240
+ "tab_size": {
241
+ "description": "Number of spaces per tab character",
221
242
  "type": "integer",
222
- "format": "uint64",
243
+ "format": "uint",
223
244
  "minimum": 0,
224
- "default": 5
245
+ "x-section": "Editing",
246
+ "default": 4
225
247
  },
226
- "snapshot_interval": {
227
- "description": "Undo history snapshot interval (number of edits between snapshots)",
248
+ "auto_indent": {
249
+ "description": "Automatically indent new lines based on the previous line",
250
+ "type": "boolean",
251
+ "x-section": "Editing",
252
+ "default": true
253
+ },
254
+ "scroll_offset": {
255
+ "description": "Minimum lines to keep visible above/below cursor when scrolling",
228
256
  "type": "integer",
229
257
  "format": "uint",
230
258
  "minimum": 0,
231
- "default": 100
259
+ "x-section": "Editing",
260
+ "default": 3
232
261
  },
233
- "large_file_threshold_bytes": {
234
- "description": "File size threshold in bytes for \"large file\" behavior\nFiles larger than this will:\n- Skip LSP features\n- Use constant-size scrollbar thumb (1 char)\n\nFiles smaller will count actual lines for accurate scrollbar rendering",
262
+ "default_line_ending": {
263
+ "description": "Default line ending format for new files.\nFiles loaded from disk will use their detected line ending format.\nOptions: \"lf\" (Unix/Linux/macOS), \"crlf\" (Windows), \"cr\" (Classic Mac)\nDefault: \"lf\"",
264
+ "$ref": "#/$defs/LineEndingOption",
265
+ "x-section": "Editing",
266
+ "default": "lf"
267
+ },
268
+ "quick_suggestions": {
269
+ "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",
270
+ "type": "boolean",
271
+ "x-section": "Completion",
272
+ "default": true
273
+ },
274
+ "quick_suggestions_delay_ms": {
275
+ "description": "Delay in milliseconds before showing completion suggestions.\nLower values (10-50ms) feel more responsive but may be distracting.\nHigher values (100-500ms) reduce noise while typing.\nTrigger characters (like `.`) bypass this delay.\nDefault: 10 (matches VS Code)",
235
276
  "type": "integer",
236
277
  "format": "uint64",
237
278
  "minimum": 0,
238
- "default": 1048576
279
+ "x-section": "Completion",
280
+ "default": 10
239
281
  },
240
- "estimated_line_length": {
241
- "description": "Estimated average line length in bytes (used for large file line estimation)\nThis is used by LineIterator to estimate line positions in large files\nwithout line metadata. Typical values: 80-120 bytes.",
242
- "type": "integer",
243
- "format": "uint",
244
- "minimum": 0,
245
- "default": 80
282
+ "suggest_on_trigger_characters": {
283
+ "description": "Whether trigger characters (like `.`, `::`, `->`) immediately show completions.\nWhen true, typing a trigger character bypasses quick_suggestions_delay_ms.\nDefault: true",
284
+ "type": "boolean",
285
+ "x-section": "Completion",
286
+ "default": true
287
+ },
288
+ "accept_suggestion_on_enter": {
289
+ "description": "Controls whether pressing Enter accepts the selected completion.\n- \"on\": Enter always accepts the completion\n- \"off\": Enter inserts a newline (use Tab to accept)\n- \"smart\": Enter accepts only if the completion text differs from typed text\nDefault: \"on\"",
290
+ "$ref": "#/$defs/AcceptSuggestionOnEnter",
291
+ "x-section": "Completion",
292
+ "default": "on"
246
293
  },
247
294
  "enable_inlay_hints": {
248
295
  "description": "Whether to enable LSP inlay hints (type hints, parameter hints, etc.)",
249
296
  "type": "boolean",
297
+ "x-section": "LSP",
250
298
  "default": true
251
299
  },
252
300
  "enable_semantic_tokens_full": {
253
301
  "description": "Whether to request full-document LSP semantic tokens.\nRange requests are still used when supported.\nDefault: false (range-only to avoid heavy full refreshes).",
254
302
  "type": "boolean",
303
+ "x-section": "LSP",
255
304
  "default": false
256
305
  },
257
- "recovery_enabled": {
258
- "description": "Whether to enable file recovery (Emacs-style auto-save)\nWhen enabled, buffers are periodically saved to recovery files\nso they can be recovered if the editor crashes.",
259
- "type": "boolean",
260
- "default": true
261
- },
262
- "auto_save_interval_secs": {
263
- "description": "Auto-save interval in seconds for file recovery\nModified buffers are saved to recovery files at this interval.\nDefault: 2 seconds for fast recovery with minimal data loss.\nSet to 0 to disable periodic auto-save (manual recovery only).",
264
- "type": "integer",
265
- "format": "uint32",
266
- "minimum": 0,
267
- "default": 2
268
- },
269
- "highlight_context_bytes": {
270
- "description": "Number of bytes to look back/forward from the viewport for syntax highlighting context.\nLarger values improve accuracy for multi-line constructs (strings, comments, nested blocks)\nbut may slow down highlighting for very large files.\nDefault: 10KB (10000 bytes)",
271
- "type": "integer",
272
- "format": "uint",
273
- "minimum": 0,
274
- "default": 10000
275
- },
276
306
  "mouse_hover_enabled": {
277
307
  "description": "Whether mouse hover triggers LSP hover requests.\nWhen enabled, hovering over code with the mouse will show documentation.\nDefault: true",
278
308
  "type": "boolean",
309
+ "x-section": "Mouse",
279
310
  "default": true
280
311
  },
281
312
  "mouse_hover_delay_ms": {
@@ -283,6 +314,7 @@
283
314
  "type": "integer",
284
315
  "format": "uint64",
285
316
  "minimum": 0,
317
+ "x-section": "Mouse",
286
318
  "default": 500
287
319
  },
288
320
  "double_click_time_ms": {
@@ -290,84 +322,105 @@
290
322
  "type": "integer",
291
323
  "format": "uint64",
292
324
  "minimum": 0,
325
+ "x-section": "Mouse",
293
326
  "default": 500
294
327
  },
295
- "auto_revert_poll_interval_ms": {
296
- "description": "Poll interval in milliseconds for auto-reverting open buffers.\nWhen auto-revert is enabled, file modification times are checked at this interval.\nLower values detect external changes faster but use more CPU.\nDefault: 2000ms (2 seconds)",
328
+ "recovery_enabled": {
329
+ "description": "Whether to enable file recovery (Emacs-style auto-save)\nWhen enabled, buffers are periodically saved to recovery files\nso they can be recovered if the editor crashes.",
330
+ "type": "boolean",
331
+ "x-section": "Recovery",
332
+ "default": true
333
+ },
334
+ "auto_save_interval_secs": {
335
+ "description": "Auto-save interval in seconds for file recovery\nModified buffers are saved to recovery files at this interval.\nDefault: 2 seconds for fast recovery with minimal data loss.\nSet to 0 to disable periodic auto-save (manual recovery only).",
297
336
  "type": "integer",
298
- "format": "uint64",
337
+ "format": "uint32",
299
338
  "minimum": 0,
300
- "default": 2000
339
+ "x-section": "Recovery",
340
+ "default": 2
301
341
  },
302
- "file_tree_poll_interval_ms": {
303
- "description": "Poll interval in milliseconds for refreshing expanded directories in the file explorer.\nDirectory modification times are checked at this interval to detect new/deleted files.\nLower values detect changes faster but use more CPU.\nDefault: 3000ms (3 seconds)",
342
+ "auto_revert_poll_interval_ms": {
343
+ "description": "Poll interval in milliseconds for auto-reverting open buffers.\nWhen auto-revert is enabled, file modification times are checked at this interval.\nLower values detect external changes faster but use more CPU.\nDefault: 2000ms (2 seconds)",
304
344
  "type": "integer",
305
345
  "format": "uint64",
306
346
  "minimum": 0,
307
- "default": 3000
308
- },
309
- "default_line_ending": {
310
- "description": "Default line ending format for new files.\nFiles loaded from disk will use their detected line ending format.\nOptions: \"lf\" (Unix/Linux/macOS), \"crlf\" (Windows), \"cr\" (Classic Mac)\nDefault: \"lf\"",
311
- "$ref": "#/$defs/LineEndingOption",
312
- "default": "lf"
313
- },
314
- "cursor_style": {
315
- "description": "Cursor style for the terminal cursor.\nOptions: blinking_block, steady_block, blinking_bar, steady_bar, blinking_underline, steady_underline\nDefault: blinking_block",
316
- "$ref": "#/$defs/CursorStyle",
317
- "default": "default"
347
+ "x-section": "Recovery",
348
+ "default": 2000
318
349
  },
319
350
  "keyboard_disambiguate_escape_codes": {
320
351
  "description": "Enable keyboard enhancement: disambiguate escape codes using CSI-u sequences.\nThis allows unambiguous reading of Escape and modified keys.\nRequires terminal support (kitty keyboard protocol).\nDefault: true",
321
352
  "type": "boolean",
353
+ "x-section": "Keyboard",
322
354
  "default": true
323
355
  },
324
356
  "keyboard_report_event_types": {
325
357
  "description": "Enable keyboard enhancement: report key event types (repeat/release).\nAdds extra events when keys are autorepeated or released.\nRequires terminal support (kitty keyboard protocol).\nDefault: false",
326
358
  "type": "boolean",
359
+ "x-section": "Keyboard",
327
360
  "default": false
328
361
  },
329
362
  "keyboard_report_alternate_keys": {
330
363
  "description": "Enable keyboard enhancement: report alternate keycodes.\nSends alternate keycodes in addition to the base keycode.\nRequires terminal support (kitty keyboard protocol).\nDefault: true",
331
364
  "type": "boolean",
365
+ "x-section": "Keyboard",
332
366
  "default": true
333
367
  },
334
368
  "keyboard_report_all_keys_as_escape_codes": {
335
369
  "description": "Enable keyboard enhancement: report all keys as escape codes.\nRepresents all keyboard events as CSI-u sequences.\nRequired for repeat/release events on plain-text keys.\nRequires terminal support (kitty keyboard protocol).\nDefault: false",
336
370
  "type": "boolean",
371
+ "x-section": "Keyboard",
337
372
  "default": false
338
373
  },
339
- "quick_suggestions": {
340
- "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",
341
- "type": "boolean",
342
- "default": true
374
+ "highlight_timeout_ms": {
375
+ "description": "Maximum time in milliseconds for syntax highlighting per frame",
376
+ "type": "integer",
377
+ "format": "uint64",
378
+ "minimum": 0,
379
+ "x-section": "Performance",
380
+ "default": 5
343
381
  },
344
- "show_menu_bar": {
345
- "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",
346
- "type": "boolean",
347
- "default": true
382
+ "snapshot_interval": {
383
+ "description": "Undo history snapshot interval (number of edits between snapshots)",
384
+ "type": "integer",
385
+ "format": "uint",
386
+ "minimum": 0,
387
+ "x-section": "Performance",
388
+ "default": 100
348
389
  },
349
- "show_tab_bar": {
350
- "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",
351
- "type": "boolean",
352
- "default": true
390
+ "highlight_context_bytes": {
391
+ "description": "Number of bytes to look back/forward from the viewport for syntax highlighting context.\nLarger values improve accuracy for multi-line constructs (strings, comments, nested blocks)\nbut may slow down highlighting for very large files.\nDefault: 10KB (10000 bytes)",
392
+ "type": "integer",
393
+ "format": "uint",
394
+ "minimum": 0,
395
+ "x-section": "Performance",
396
+ "default": 10000
353
397
  },
354
- "use_terminal_bg": {
355
- "description": "Use the terminal's default background color instead of the theme's editor background.\nWhen enabled, the editor background inherits from the terminal emulator,\nallowing transparency or custom terminal backgrounds to show through.\nDefault: false",
356
- "type": "boolean",
357
- "default": false
398
+ "large_file_threshold_bytes": {
399
+ "description": "File size threshold in bytes for \"large file\" behavior\nFiles larger than this will:\n- Skip LSP features\n- Use constant-size scrollbar thumb (1 char)\n\nFiles smaller will count actual lines for accurate scrollbar rendering",
400
+ "type": "integer",
401
+ "format": "uint64",
402
+ "minimum": 0,
403
+ "x-section": "Performance",
404
+ "default": 1048576
405
+ },
406
+ "estimated_line_length": {
407
+ "description": "Estimated average line length in bytes (used for large file line estimation)\nThis is used by LineIterator to estimate line positions in large files\nwithout line metadata. Typical values: 80-120 bytes.",
408
+ "type": "integer",
409
+ "format": "uint",
410
+ "minimum": 0,
411
+ "x-section": "Performance",
412
+ "default": 80
413
+ },
414
+ "file_tree_poll_interval_ms": {
415
+ "description": "Poll interval in milliseconds for refreshing expanded directories in the file explorer.\nDirectory modification times are checked at this interval to detect new/deleted files.\nLower values detect changes faster but use more CPU.\nDefault: 3000ms (3 seconds)",
416
+ "type": "integer",
417
+ "format": "uint64",
418
+ "minimum": 0,
419
+ "x-section": "Performance",
420
+ "default": 3000
358
421
  }
359
422
  }
360
423
  },
361
- "LineEndingOption": {
362
- "description": "Default line ending format for new files",
363
- "type": "string",
364
- "enum": [
365
- "lf",
366
- "crlf",
367
- "cr"
368
- ],
369
- "default": "lf"
370
- },
371
424
  "CursorStyle": {
372
425
  "description": "Terminal cursor style",
373
426
  "type": "string",
@@ -381,6 +434,26 @@
381
434
  "steady_underline"
382
435
  ]
383
436
  },
437
+ "LineEndingOption": {
438
+ "description": "Default line ending format for new files",
439
+ "type": "string",
440
+ "enum": [
441
+ "lf",
442
+ "crlf",
443
+ "cr"
444
+ ],
445
+ "default": "lf"
446
+ },
447
+ "AcceptSuggestionOnEnter": {
448
+ "description": "Controls whether Enter accepts a completion suggestion",
449
+ "type": "string",
450
+ "enum": [
451
+ "on",
452
+ "off",
453
+ "smart"
454
+ ],
455
+ "default": "on"
456
+ },
384
457
  "FileExplorerConfig": {
385
458
  "description": "File explorer configuration",
386
459
  "type": "object",
@@ -841,6 +914,22 @@
841
914
  }
842
915
  },
843
916
  "x-display-field": "/enabled"
917
+ },
918
+ "PackagesConfig": {
919
+ "description": "Package manager configuration for plugins and themes",
920
+ "type": "object",
921
+ "properties": {
922
+ "sources": {
923
+ "description": "Registry sources (git repository URLs containing plugin/theme indices)\nDefault: [\"https://github.com/sinelaw/fresh-plugins-registry\"]",
924
+ "type": "array",
925
+ "items": {
926
+ "type": "string"
927
+ },
928
+ "default": [
929
+ "https://github.com/sinelaw/fresh-plugins-registry"
930
+ ]
931
+ }
932
+ }
844
933
  }
845
934
  }
846
935
  }
@@ -1,80 +1,80 @@
1
1
  {
2
2
  "cs": {
3
- "status.restoring_packages": "Obnovuji balicky NuGet pro {project}...",
4
- "status.restore_completed": "Obnoveni NuGet dokonceno pro {project}",
5
- "status.restore_failed": "Obnoveni NuGet selhalo: {error}",
6
- "status.restore_error": "Chyba obnoveni NuGet: {error}"
3
+ "status.restoring_packages": "Obnovuji balicky NuGet pro %{project}...",
4
+ "status.restore_completed": "Obnoveni NuGet dokonceno pro %{project}",
5
+ "status.restore_failed": "Obnoveni NuGet selhalo: %{error}",
6
+ "status.restore_error": "Chyba obnoveni NuGet: %{error}"
7
7
  },
8
8
  "de": {
9
- "status.restoring_packages": "NuGet-Pakete werden fur {project} wiederhergestellt...",
10
- "status.restore_completed": "NuGet-Wiederherstellung fur {project} abgeschlossen",
11
- "status.restore_failed": "NuGet-Wiederherstellung fehlgeschlagen: {error}",
12
- "status.restore_error": "NuGet-Wiederherstellungsfehler: {error}"
9
+ "status.restoring_packages": "NuGet-Pakete werden fur %{project} wiederhergestellt...",
10
+ "status.restore_completed": "NuGet-Wiederherstellung fur %{project} abgeschlossen",
11
+ "status.restore_failed": "NuGet-Wiederherstellung fehlgeschlagen: %{error}",
12
+ "status.restore_error": "NuGet-Wiederherstellungsfehler: %{error}"
13
13
  },
14
14
  "en": {
15
- "status.restoring_packages": "Restoring NuGet packages for {project}...",
16
- "status.restore_completed": "NuGet restore completed for {project}",
17
- "status.restore_failed": "NuGet restore failed: {error}",
18
- "status.restore_error": "NuGet restore error: {error}"
15
+ "status.restoring_packages": "Restoring NuGet packages for %{project}...",
16
+ "status.restore_completed": "NuGet restore completed for %{project}",
17
+ "status.restore_failed": "NuGet restore failed: %{error}",
18
+ "status.restore_error": "NuGet restore error: %{error}"
19
19
  },
20
20
  "es": {
21
- "status.restoring_packages": "Restaurando paquetes NuGet para {project}...",
22
- "status.restore_completed": "Restauracion de NuGet completada para {project}",
23
- "status.restore_failed": "Restauracion de NuGet fallida: {error}",
24
- "status.restore_error": "Error de restauracion de NuGet: {error}"
21
+ "status.restoring_packages": "Restaurando paquetes NuGet para %{project}...",
22
+ "status.restore_completed": "Restauracion de NuGet completada para %{project}",
23
+ "status.restore_failed": "Restauracion de NuGet fallida: %{error}",
24
+ "status.restore_error": "Error de restauracion de NuGet: %{error}"
25
25
  },
26
26
  "fr": {
27
- "status.restoring_packages": "Restauration des paquets NuGet pour {project}...",
28
- "status.restore_completed": "Restauration NuGet terminee pour {project}",
29
- "status.restore_failed": "Echec de la restauration NuGet: {error}",
30
- "status.restore_error": "Erreur de restauration NuGet: {error}"
27
+ "status.restoring_packages": "Restauration des paquets NuGet pour %{project}...",
28
+ "status.restore_completed": "Restauration NuGet terminee pour %{project}",
29
+ "status.restore_failed": "Echec de la restauration NuGet: %{error}",
30
+ "status.restore_error": "Erreur de restauration NuGet: %{error}"
31
31
  },
32
32
  "it": {
33
- "status.restoring_packages": "Ripristino pacchetti NuGet per {project}...",
34
- "status.restore_completed": "Ripristino NuGet completato per {project}",
35
- "status.restore_failed": "Ripristino NuGet fallito: {error}",
36
- "status.restore_error": "Errore ripristino NuGet: {error}"
33
+ "status.restoring_packages": "Ripristino pacchetti NuGet per %{project}...",
34
+ "status.restore_completed": "Ripristino NuGet completato per %{project}",
35
+ "status.restore_failed": "Ripristino NuGet fallito: %{error}",
36
+ "status.restore_error": "Errore ripristino NuGet: %{error}"
37
37
  },
38
38
  "ja": {
39
- "status.restoring_packages": "{project}のNuGetパッケージを復元中...",
40
- "status.restore_completed": "{project}のNuGet復元が完了しました",
41
- "status.restore_failed": "NuGet復元に失敗しました: {error}",
42
- "status.restore_error": "NuGet復元エラー: {error}"
39
+ "status.restoring_packages": "%{project}のNuGetパッケージを復元中...",
40
+ "status.restore_completed": "%{project}のNuGet復元が完了しました",
41
+ "status.restore_failed": "NuGet復元に失敗しました: %{error}",
42
+ "status.restore_error": "NuGet復元エラー: %{error}"
43
43
  },
44
44
  "ko": {
45
- "status.restoring_packages": "{project}의 NuGet 패키지 복원 중...",
46
- "status.restore_completed": "{project}의 NuGet 복원이 완료되었습니다",
47
- "status.restore_failed": "NuGet 복원 실패: {error}",
48
- "status.restore_error": "NuGet 복원 오류: {error}"
45
+ "status.restoring_packages": "%{project}의 NuGet 패키지 복원 중...",
46
+ "status.restore_completed": "%{project}의 NuGet 복원이 완료되었습니다",
47
+ "status.restore_failed": "NuGet 복원 실패: %{error}",
48
+ "status.restore_error": "NuGet 복원 오류: %{error}"
49
49
  },
50
50
  "pt-BR": {
51
- "status.restoring_packages": "Restaurando pacotes NuGet para {project}...",
52
- "status.restore_completed": "Restauracao do NuGet concluida para {project}",
53
- "status.restore_failed": "Restauracao do NuGet falhou: {error}",
54
- "status.restore_error": "Erro na restauracao do NuGet: {error}"
51
+ "status.restoring_packages": "Restaurando pacotes NuGet para %{project}...",
52
+ "status.restore_completed": "Restauracao do NuGet concluida para %{project}",
53
+ "status.restore_failed": "Restauracao do NuGet falhou: %{error}",
54
+ "status.restore_error": "Erro na restauracao do NuGet: %{error}"
55
55
  },
56
56
  "ru": {
57
- "status.restoring_packages": "Восстановление пакетов NuGet для {project}...",
58
- "status.restore_completed": "Восстановление NuGet завершено для {project}",
59
- "status.restore_failed": "Ошибка восстановления NuGet: {error}",
60
- "status.restore_error": "Ошибка восстановления NuGet: {error}"
57
+ "status.restoring_packages": "Восстановление пакетов NuGet для %{project}...",
58
+ "status.restore_completed": "Восстановление NuGet завершено для %{project}",
59
+ "status.restore_failed": "Ошибка восстановления NuGet: %{error}",
60
+ "status.restore_error": "Ошибка восстановления NuGet: %{error}"
61
61
  },
62
62
  "th": {
63
- "status.restoring_packages": "กำลังกู้คืนแพ็คเกจ NuGet สำหรับ {project}...",
64
- "status.restore_completed": "การกู้คืน NuGet สำหรับ {project} เสร็จสมบูรณ์",
65
- "status.restore_failed": "การกู้คืน NuGet ล้มเหลว: {error}",
66
- "status.restore_error": "ข้อผิดพลาดการกู้คืน NuGet: {error}"
63
+ "status.restoring_packages": "กำลังกู้คืนแพ็คเกจ NuGet สำหรับ %{project}...",
64
+ "status.restore_completed": "การกู้คืน NuGet สำหรับ %{project} เสร็จสมบูรณ์",
65
+ "status.restore_failed": "การกู้คืน NuGet ล้มเหลว: %{error}",
66
+ "status.restore_error": "ข้อผิดพลาดการกู้คืน NuGet: %{error}"
67
67
  },
68
68
  "uk": {
69
- "status.restoring_packages": "Відновлення пакетів NuGet для {project}...",
70
- "status.restore_completed": "Відновлення NuGet завершено для {project}",
71
- "status.restore_failed": "Помилка відновлення NuGet: {error}",
72
- "status.restore_error": "Помилка відновлення NuGet: {error}"
69
+ "status.restoring_packages": "Відновлення пакетів NuGet для %{project}...",
70
+ "status.restore_completed": "Відновлення NuGet завершено для %{project}",
71
+ "status.restore_failed": "Помилка відновлення NuGet: %{error}",
72
+ "status.restore_error": "Помилка відновлення NuGet: %{error}"
73
73
  },
74
74
  "zh-CN": {
75
- "status.restoring_packages": "正在为{project}恢复NuGet包...",
76
- "status.restore_completed": "{project}的NuGet恢复已完成",
77
- "status.restore_failed": "NuGet恢复失败: {error}",
78
- "status.restore_error": "NuGet恢复错误: {error}"
75
+ "status.restoring_packages": "正在为%{project}恢复NuGet包...",
76
+ "status.restore_completed": "%{project}的NuGet恢复已完成",
77
+ "status.restore_failed": "NuGet恢复失败: %{error}",
78
+ "status.restore_error": "NuGet恢复错误: %{error}"
79
79
  }
80
80
  }