@fresh-editor/fresh-editor 0.3.0 → 0.3.1

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.
Files changed (76) hide show
  1. package/CHANGELOG.md +66 -2
  2. package/package.json +1 -1
  3. package/plugins/astro-lsp.ts +6 -12
  4. package/plugins/audit_mode.ts +106 -113
  5. package/plugins/bash-lsp.ts +15 -22
  6. package/plugins/clangd-lsp.ts +15 -24
  7. package/plugins/clojure-lsp.ts +9 -12
  8. package/plugins/cmake-lsp.ts +9 -12
  9. package/plugins/code-tour.ts +15 -16
  10. package/plugins/config-schema.json +10 -0
  11. package/plugins/csharp_support.ts +25 -30
  12. package/plugins/css-lsp.ts +15 -22
  13. package/plugins/dart-lsp.ts +9 -12
  14. package/plugins/dashboard.ts +118 -0
  15. package/plugins/devcontainer.i18n.json +84 -28
  16. package/plugins/devcontainer.ts +897 -170
  17. package/plugins/diagnostics_panel.ts +10 -17
  18. package/plugins/elixir-lsp.ts +9 -12
  19. package/plugins/erlang-lsp.ts +9 -12
  20. package/plugins/examples/bookmarks.ts +10 -16
  21. package/plugins/find_references.ts +5 -9
  22. package/plugins/flash.ts +577 -0
  23. package/plugins/fsharp-lsp.ts +9 -12
  24. package/plugins/git_explorer.ts +16 -20
  25. package/plugins/git_gutter.ts +65 -79
  26. package/plugins/git_log.ts +8 -8
  27. package/plugins/gleam-lsp.ts +9 -12
  28. package/plugins/go-lsp.ts +15 -22
  29. package/plugins/graphql-lsp.ts +9 -12
  30. package/plugins/haskell-lsp.ts +9 -12
  31. package/plugins/html-lsp.ts +15 -24
  32. package/plugins/java-lsp.ts +9 -12
  33. package/plugins/json-lsp.ts +15 -24
  34. package/plugins/julia-lsp.ts +9 -12
  35. package/plugins/kotlin-lsp.ts +15 -22
  36. package/plugins/latex-lsp.ts +9 -12
  37. package/plugins/lib/fresh.d.ts +378 -0
  38. package/plugins/lua-lsp.ts +15 -22
  39. package/plugins/markdown_compose.ts +78 -122
  40. package/plugins/markdown_source.ts +8 -10
  41. package/plugins/marksman-lsp.ts +9 -12
  42. package/plugins/merge_conflict.ts +15 -17
  43. package/plugins/nim-lsp.ts +9 -12
  44. package/plugins/nix-lsp.ts +9 -12
  45. package/plugins/nushell-lsp.ts +9 -12
  46. package/plugins/ocaml-lsp.ts +9 -12
  47. package/plugins/odin-lsp.ts +15 -22
  48. package/plugins/path_complete.ts +5 -6
  49. package/plugins/perl-lsp.ts +9 -12
  50. package/plugins/php-lsp.ts +15 -22
  51. package/plugins/pkg.ts +10 -21
  52. package/plugins/protobuf-lsp.ts +9 -12
  53. package/plugins/python-lsp.ts +15 -24
  54. package/plugins/r-lsp.ts +9 -12
  55. package/plugins/ruby-lsp.ts +15 -22
  56. package/plugins/rust-lsp.ts +18 -28
  57. package/plugins/scala-lsp.ts +9 -12
  58. package/plugins/schemas/theme.schema.json +18 -0
  59. package/plugins/search_replace.ts +10 -13
  60. package/plugins/solidity-lsp.ts +9 -12
  61. package/plugins/sql-lsp.ts +9 -12
  62. package/plugins/svelte-lsp.ts +9 -12
  63. package/plugins/swift-lsp.ts +9 -12
  64. package/plugins/tailwindcss-lsp.ts +9 -12
  65. package/plugins/templ-lsp.ts +9 -12
  66. package/plugins/terraform-lsp.ts +9 -12
  67. package/plugins/theme_editor.i18n.json +70 -14
  68. package/plugins/theme_editor.ts +152 -208
  69. package/plugins/toml-lsp.ts +15 -22
  70. package/plugins/tsconfig.json +100 -0
  71. package/plugins/typescript-lsp.ts +15 -24
  72. package/plugins/typst-lsp.ts +15 -22
  73. package/plugins/vi_mode.ts +77 -290
  74. package/plugins/vue-lsp.ts +9 -12
  75. package/plugins/yaml-lsp.ts +15 -22
  76. package/plugins/zig-lsp.ts +9 -12
@@ -47,7 +47,8 @@ let solidityLspError: { serverCommand: string; message: string } | null = null;
47
47
  /**
48
48
  * Handle LSP server errors for Solidity
49
49
  */
50
- function on_solidity_lsp_server_error(data: LspServerErrorData): void {
50
+
51
+ editor.on("lsp_server_error", (data) => {
51
52
  if (data.language !== "solidity") {
52
53
  return;
53
54
  }
@@ -66,14 +67,13 @@ function on_solidity_lsp_server_error(data: LspServerErrorData): void {
66
67
  } else {
67
68
  editor.setStatus(`Solidity LSP error: ${data.message}`);
68
69
  }
69
- }
70
- registerHandler("on_solidity_lsp_server_error", on_solidity_lsp_server_error);
71
- editor.on("lsp_server_error", "on_solidity_lsp_server_error");
70
+ });
72
71
 
73
72
  /**
74
73
  * Handle status bar click when there's a Solidity LSP error
75
74
  */
76
- function on_solidity_lsp_status_clicked(data: LspStatusClickedData): void {
75
+
76
+ editor.on("lsp_status_clicked", (data) => {
77
77
  if (data.language !== "solidity" || !solidityLspError) {
78
78
  return;
79
79
  }
@@ -90,14 +90,13 @@ function on_solidity_lsp_status_clicked(data: LspStatusClickedData): void {
90
90
  { id: "dismiss", label: "Dismiss (ESC)" },
91
91
  ],
92
92
  });
93
- }
94
- registerHandler("on_solidity_lsp_status_clicked", on_solidity_lsp_status_clicked);
95
- editor.on("lsp_status_clicked", "on_solidity_lsp_status_clicked");
93
+ });
96
94
 
97
95
  /**
98
96
  * Handle action popup results for Solidity LSP help
99
97
  */
100
- function on_solidity_lsp_action_result(data: ActionPopupResultData): void {
98
+
99
+ editor.on("action_popup_result", (data) => {
101
100
  if (data.popup_id !== "solidity-lsp-help") {
102
101
  return;
103
102
  }
@@ -123,8 +122,6 @@ function on_solidity_lsp_action_result(data: ActionPopupResultData): void {
123
122
  default:
124
123
  editor.debug(`solidity-lsp: Unknown action: ${data.action_id}`);
125
124
  }
126
- }
127
- registerHandler("on_solidity_lsp_action_result", on_solidity_lsp_action_result);
128
- editor.on("action_popup_result", "on_solidity_lsp_action_result");
125
+ });
129
126
 
130
127
  editor.debug("solidity-lsp: Plugin loaded");
@@ -40,7 +40,8 @@ const INSTALL_COMMANDS = {
40
40
 
41
41
  let sqlLspError: { serverCommand: string; message: string } | null = null;
42
42
 
43
- function on_sql_lsp_server_error(data: LspServerErrorData): void {
43
+
44
+ editor.on("lsp_server_error", (data) => {
44
45
  if (data.language !== "sql") {
45
46
  return;
46
47
  }
@@ -59,11 +60,10 @@ function on_sql_lsp_server_error(data: LspServerErrorData): void {
59
60
  } else {
60
61
  editor.setStatus(`SQL LSP error: ${data.message}`);
61
62
  }
62
- }
63
- registerHandler("on_sql_lsp_server_error", on_sql_lsp_server_error);
64
- editor.on("lsp_server_error", "on_sql_lsp_server_error");
63
+ });
64
+
65
65
 
66
- function on_sql_lsp_status_clicked(data: LspStatusClickedData): void {
66
+ editor.on("lsp_status_clicked", (data) => {
67
67
  if (data.language !== "sql" || !sqlLspError) {
68
68
  return;
69
69
  }
@@ -82,11 +82,10 @@ function on_sql_lsp_status_clicked(data: LspStatusClickedData): void {
82
82
  { id: "dismiss", label: "Dismiss (ESC)" },
83
83
  ],
84
84
  });
85
- }
86
- registerHandler("on_sql_lsp_status_clicked", on_sql_lsp_status_clicked);
87
- editor.on("lsp_status_clicked", "on_sql_lsp_status_clicked");
85
+ });
86
+
88
87
 
89
- function on_sql_lsp_action_result(data: ActionPopupResultData): void {
88
+ editor.on("action_popup_result", (data) => {
90
89
  if (data.popup_id !== "sql-lsp-help") {
91
90
  return;
92
91
  }
@@ -122,8 +121,6 @@ function on_sql_lsp_action_result(data: ActionPopupResultData): void {
122
121
  default:
123
122
  editor.debug(`sql-lsp: Unknown action: ${data.action_id}`);
124
123
  }
125
- }
126
- registerHandler("on_sql_lsp_action_result", on_sql_lsp_action_result);
127
- editor.on("action_popup_result", "on_sql_lsp_action_result");
124
+ });
128
125
 
129
126
  editor.debug("sql-lsp: Plugin loaded");
@@ -36,7 +36,8 @@ const INSTALL_COMMANDS = {
36
36
 
37
37
  let svelteLspError: { serverCommand: string; message: string } | null = null;
38
38
 
39
- function on_svelte_lsp_server_error(data: LspServerErrorData): void {
39
+
40
+ editor.on("lsp_server_error", (data) => {
40
41
  if (data.language !== "svelte") {
41
42
  return;
42
43
  }
@@ -55,11 +56,10 @@ function on_svelte_lsp_server_error(data: LspServerErrorData): void {
55
56
  } else {
56
57
  editor.setStatus(`Svelte LSP error: ${data.message}`);
57
58
  }
58
- }
59
- registerHandler("on_svelte_lsp_server_error", on_svelte_lsp_server_error);
60
- editor.on("lsp_server_error", "on_svelte_lsp_server_error");
59
+ });
60
+
61
61
 
62
- function on_svelte_lsp_status_clicked(data: LspStatusClickedData): void {
62
+ editor.on("lsp_status_clicked", (data) => {
63
63
  if (data.language !== "svelte" || !svelteLspError) {
64
64
  return;
65
65
  }
@@ -77,11 +77,10 @@ function on_svelte_lsp_status_clicked(data: LspStatusClickedData): void {
77
77
  { id: "dismiss", label: "Dismiss (ESC)" },
78
78
  ],
79
79
  });
80
- }
81
- registerHandler("on_svelte_lsp_status_clicked", on_svelte_lsp_status_clicked);
82
- editor.on("lsp_status_clicked", "on_svelte_lsp_status_clicked");
80
+ });
81
+
83
82
 
84
- function on_svelte_lsp_action_result(data: ActionPopupResultData): void {
83
+ editor.on("action_popup_result", (data) => {
85
84
  if (data.popup_id !== "svelte-lsp-help") {
86
85
  return;
87
86
  }
@@ -112,8 +111,6 @@ function on_svelte_lsp_action_result(data: ActionPopupResultData): void {
112
111
  default:
113
112
  editor.debug(`svelte-lsp: Unknown action: ${data.action_id}`);
114
113
  }
115
- }
116
- registerHandler("on_svelte_lsp_action_result", on_svelte_lsp_action_result);
117
- editor.on("action_popup_result", "on_svelte_lsp_action_result");
114
+ });
118
115
 
119
116
  editor.debug("svelte-lsp: Plugin loaded");
@@ -37,7 +37,8 @@ const INSTALL_COMMANDS = {
37
37
 
38
38
  let swiftLspError: { serverCommand: string; message: string } | null = null;
39
39
 
40
- function on_swift_lsp_server_error(data: LspServerErrorData): void {
40
+
41
+ editor.on("lsp_server_error", (data) => {
41
42
  if (data.language !== "swift") {
42
43
  return;
43
44
  }
@@ -56,11 +57,10 @@ function on_swift_lsp_server_error(data: LspServerErrorData): void {
56
57
  } else {
57
58
  editor.setStatus(`Swift LSP error: ${data.message}`);
58
59
  }
59
- }
60
- registerHandler("on_swift_lsp_server_error", on_swift_lsp_server_error);
61
- editor.on("lsp_server_error", "on_swift_lsp_server_error");
60
+ });
61
+
62
62
 
63
- function on_swift_lsp_status_clicked(data: LspStatusClickedData): void {
63
+ editor.on("lsp_status_clicked", (data) => {
64
64
  if (data.language !== "swift" || !swiftLspError) {
65
65
  return;
66
66
  }
@@ -78,11 +78,10 @@ function on_swift_lsp_status_clicked(data: LspStatusClickedData): void {
78
78
  { id: "dismiss", label: "Dismiss (ESC)" },
79
79
  ],
80
80
  });
81
- }
82
- registerHandler("on_swift_lsp_status_clicked", on_swift_lsp_status_clicked);
83
- editor.on("lsp_status_clicked", "on_swift_lsp_status_clicked");
81
+ });
82
+
84
83
 
85
- function on_swift_lsp_action_result(data: ActionPopupResultData): void {
84
+ editor.on("action_popup_result", (data) => {
86
85
  if (data.popup_id !== "swift-lsp-help") {
87
86
  return;
88
87
  }
@@ -113,8 +112,6 @@ function on_swift_lsp_action_result(data: ActionPopupResultData): void {
113
112
  default:
114
113
  editor.debug(`swift-lsp: Unknown action: ${data.action_id}`);
115
114
  }
116
- }
117
- registerHandler("on_swift_lsp_action_result", on_swift_lsp_action_result);
118
- editor.on("action_popup_result", "on_swift_lsp_action_result");
115
+ });
119
116
 
120
117
  editor.debug("swift-lsp: Plugin loaded");
@@ -36,7 +36,8 @@ const INSTALL_COMMANDS = {
36
36
 
37
37
  let tailwindLspError: { serverCommand: string; message: string } | null = null;
38
38
 
39
- function on_tailwindcss_lsp_server_error(data: LspServerErrorData): void {
39
+
40
+ editor.on("lsp_server_error", (data) => {
40
41
  if (data.language !== "tailwindcss") {
41
42
  return;
42
43
  }
@@ -55,11 +56,10 @@ function on_tailwindcss_lsp_server_error(data: LspServerErrorData): void {
55
56
  } else {
56
57
  editor.setStatus(`Tailwind CSS LSP error: ${data.message}`);
57
58
  }
58
- }
59
- registerHandler("on_tailwindcss_lsp_server_error", on_tailwindcss_lsp_server_error);
60
- editor.on("lsp_server_error", "on_tailwindcss_lsp_server_error");
59
+ });
60
+
61
61
 
62
- function on_tailwindcss_lsp_status_clicked(data: LspStatusClickedData): void {
62
+ editor.on("lsp_status_clicked", (data) => {
63
63
  if (data.language !== "tailwindcss" || !tailwindLspError) {
64
64
  return;
65
65
  }
@@ -77,11 +77,10 @@ function on_tailwindcss_lsp_status_clicked(data: LspStatusClickedData): void {
77
77
  { id: "dismiss", label: "Dismiss (ESC)" },
78
78
  ],
79
79
  });
80
- }
81
- registerHandler("on_tailwindcss_lsp_status_clicked", on_tailwindcss_lsp_status_clicked);
82
- editor.on("lsp_status_clicked", "on_tailwindcss_lsp_status_clicked");
80
+ });
81
+
83
82
 
84
- function on_tailwindcss_lsp_action_result(data: ActionPopupResultData): void {
83
+ editor.on("action_popup_result", (data) => {
85
84
  if (data.popup_id !== "tailwindcss-lsp-help") {
86
85
  return;
87
86
  }
@@ -112,8 +111,6 @@ function on_tailwindcss_lsp_action_result(data: ActionPopupResultData): void {
112
111
  default:
113
112
  editor.debug(`tailwindcss-lsp: Unknown action: ${data.action_id}`);
114
113
  }
115
- }
116
- registerHandler("on_tailwindcss_lsp_action_result", on_tailwindcss_lsp_action_result);
117
- editor.on("action_popup_result", "on_tailwindcss_lsp_action_result");
114
+ });
118
115
 
119
116
  editor.debug("tailwindcss-lsp: Plugin loaded");
@@ -22,7 +22,8 @@ interface ActionPopupResultData {
22
22
  const INSTALL_URL = "https://templ.guide/quick-start/installation";
23
23
  let templLspError: { serverCommand: string; message: string } | null = null;
24
24
 
25
- function on_templ_lsp_server_error(data: LspServerErrorData) : void {
25
+
26
+ editor.on("lsp_server_error", (data) => {
26
27
  if (data.language !== "templ") return;
27
28
  templLspError = { serverCommand: data.server_command, message: data.message };
28
29
  if (data.error_type === "not_found") {
@@ -30,11 +31,10 @@ function on_templ_lsp_server_error(data: LspServerErrorData) : void {
30
31
  } else {
31
32
  editor.setStatus(`Templ LSP error: ${data.message}`);
32
33
  }
33
- }
34
- registerHandler("on_templ_lsp_server_error", on_templ_lsp_server_error);
35
- editor.on("lsp_server_error", "on_templ_lsp_server_error");
34
+ });
35
+
36
36
 
37
- function on_templ_lsp_status_clicked(data: LspStatusClickedData) : void {
37
+ editor.on("lsp_status_clicked", (data) => {
38
38
  if (data.language !== "templ" || !templLspError) return;
39
39
  editor.showActionPopup({
40
40
  id: "templ-lsp-help",
@@ -46,11 +46,10 @@ function on_templ_lsp_status_clicked(data: LspStatusClickedData) : void {
46
46
  { id: "dismiss", label: "Dismiss (ESC)" },
47
47
  ],
48
48
  });
49
- }
50
- registerHandler("on_templ_lsp_status_clicked", on_templ_lsp_status_clicked);
51
- editor.on("lsp_status_clicked", "on_templ_lsp_status_clicked");
49
+ });
50
+
52
51
 
53
- function on_templ_lsp_action_result(data: ActionPopupResultData) : void {
52
+ editor.on("action_popup_result", (data) => {
54
53
  if (data.popup_id !== "templ-lsp-help") return;
55
54
  switch (data.action_id) {
56
55
  case "copy_url":
@@ -63,6 +62,4 @@ function on_templ_lsp_action_result(data: ActionPopupResultData) : void {
63
62
  templLspError = null;
64
63
  break;
65
64
  }
66
- }
67
- registerHandler("on_templ_lsp_action_result", on_templ_lsp_action_result);
68
- editor.on("action_popup_result", "on_templ_lsp_action_result");
65
+ });
@@ -49,7 +49,8 @@ let terraformLspError: { serverCommand: string; message: string } | null = null;
49
49
  /**
50
50
  * Handle LSP server errors for Terraform
51
51
  */
52
- function on_terraform_lsp_server_error(data: LspServerErrorData): void {
52
+
53
+ editor.on("lsp_server_error", (data) => {
53
54
  if (data.language !== "terraform") {
54
55
  return;
55
56
  }
@@ -68,14 +69,13 @@ function on_terraform_lsp_server_error(data: LspServerErrorData): void {
68
69
  } else {
69
70
  editor.setStatus(`Terraform LSP error: ${data.message}`);
70
71
  }
71
- }
72
- registerHandler("on_terraform_lsp_server_error", on_terraform_lsp_server_error);
73
- editor.on("lsp_server_error", "on_terraform_lsp_server_error");
72
+ });
74
73
 
75
74
  /**
76
75
  * Handle status bar click when there's a Terraform LSP error
77
76
  */
78
- function on_terraform_lsp_status_clicked(data: LspStatusClickedData): void {
77
+
78
+ editor.on("lsp_status_clicked", (data) => {
79
79
  if (data.language !== "terraform" || !terraformLspError) {
80
80
  return;
81
81
  }
@@ -94,14 +94,13 @@ function on_terraform_lsp_status_clicked(data: LspStatusClickedData): void {
94
94
  { id: "dismiss", label: "Dismiss (ESC)" },
95
95
  ],
96
96
  });
97
- }
98
- registerHandler("on_terraform_lsp_status_clicked", on_terraform_lsp_status_clicked);
99
- editor.on("lsp_status_clicked", "on_terraform_lsp_status_clicked");
97
+ });
100
98
 
101
99
  /**
102
100
  * Handle action popup results for Terraform LSP help
103
101
  */
104
- function on_terraform_lsp_action_result(data: ActionPopupResultData): void {
102
+
103
+ editor.on("action_popup_result", (data) => {
105
104
  if (data.popup_id !== "terraform-lsp-help") {
106
105
  return;
107
106
  }
@@ -137,8 +136,6 @@ function on_terraform_lsp_action_result(data: ActionPopupResultData): void {
137
136
  default:
138
137
  editor.debug(`terraform-lsp: Unknown action: ${data.action_id}`);
139
138
  }
140
- }
141
- registerHandler("on_terraform_lsp_action_result", on_terraform_lsp_action_result);
142
- editor.on("action_popup_result", "on_terraform_lsp_action_result");
139
+ });
143
140
 
144
141
  editor.debug("terraform-lsp: Plugin loaded");
@@ -320,7 +320,11 @@
320
320
  "field.file_status_untracked_fg": "Stav souboru: Nesledováno",
321
321
  "field.file_status_untracked_fg_desc": "Barva nesledovaných souborů v průzkumníku",
322
322
  "field.file_status_conflicted_fg": "Stav souboru: Konflikt",
323
- "field.file_status_conflicted_fg_desc": "Barva konfliktních souborů v průzkumníku"
323
+ "field.file_status_conflicted_fg_desc": "Barva konfliktních souborů v průzkumníku",
324
+ "field.label_bg": "štítek pozadí",
325
+ "field.label_bg_desc": "skok štítek pozadí barva",
326
+ "field.label_fg": "štítek popředí",
327
+ "field.label_fg_desc": "skok štítek text barva"
324
328
  },
325
329
  "de": {
326
330
  "cmd.edit_theme": "Theme bearbeiten",
@@ -643,7 +647,11 @@
643
647
  "field.file_status_untracked_fg": "Dateistatus: Nicht verfolgt",
644
648
  "field.file_status_untracked_fg_desc": "Farbe für nicht verfolgte Dateien im Datei-Explorer",
645
649
  "field.file_status_conflicted_fg": "Dateistatus: Konflikt",
646
- "field.file_status_conflicted_fg_desc": "Farbe für Dateien mit Konflikten im Datei-Explorer"
650
+ "field.file_status_conflicted_fg_desc": "Farbe für Dateien mit Konflikten im Datei-Explorer",
651
+ "field.label_bg": "Sprungmarke Hintergrund",
652
+ "field.label_bg_desc": "Hintergrundfarbe der Sprungmarke",
653
+ "field.label_fg": "Sprungmarke Vordergrund",
654
+ "field.label_fg_desc": "Textfarbe der Sprungmarke"
647
655
  },
648
656
  "en": {
649
657
  "cmd.edit_theme": "Edit Theme",
@@ -966,7 +974,11 @@
966
974
  "field.file_status_untracked_fg": "File Status: Untracked",
967
975
  "field.file_status_untracked_fg_desc": "Color for untracked files in file explorer",
968
976
  "field.file_status_conflicted_fg": "File Status: Conflicted",
969
- "field.file_status_conflicted_fg_desc": "Color for conflicted files in file explorer"
977
+ "field.file_status_conflicted_fg_desc": "Color for conflicted files in file explorer",
978
+ "field.label_bg": "Label Background",
979
+ "field.label_bg_desc": "Jump label background color",
980
+ "field.label_fg": "Label Foreground",
981
+ "field.label_fg_desc": "Jump label text color"
970
982
  },
971
983
  "es": {
972
984
  "cmd.edit_theme": "Editar tema",
@@ -1289,7 +1301,11 @@
1289
1301
  "field.file_status_untracked_fg": "Estado del archivo: Sin seguimiento",
1290
1302
  "field.file_status_untracked_fg_desc": "Color de archivos sin seguimiento en el explorador",
1291
1303
  "field.file_status_conflicted_fg": "Estado del archivo: En conflicto",
1292
- "field.file_status_conflicted_fg_desc": "Color de archivos en conflicto en el explorador"
1304
+ "field.file_status_conflicted_fg_desc": "Color de archivos en conflicto en el explorador",
1305
+ "field.label_bg": "Fondo de etiqueta",
1306
+ "field.label_bg_desc": "Color de fondo de etiqueta de salto",
1307
+ "field.label_fg": "Primer plano de etiqueta",
1308
+ "field.label_fg_desc": "Color de texto de etiqueta de salto"
1293
1309
  },
1294
1310
  "fr": {
1295
1311
  "cmd.edit_theme": "Modifier le theme",
@@ -1612,7 +1628,11 @@
1612
1628
  "field.file_status_untracked_fg": "Statut du fichier : Non suivi",
1613
1629
  "field.file_status_untracked_fg_desc": "Couleur des fichiers non suivis dans l'explorateur",
1614
1630
  "field.file_status_conflicted_fg": "Statut du fichier : En conflit",
1615
- "field.file_status_conflicted_fg_desc": "Couleur des fichiers en conflit dans l'explorateur"
1631
+ "field.file_status_conflicted_fg_desc": "Couleur des fichiers en conflit dans l'explorateur",
1632
+ "field.label_bg": "Arriere-plan etiquette",
1633
+ "field.label_bg_desc": "Couleur d'arriere-plan de l'etiquette de saut",
1634
+ "field.label_fg": "Premier plan etiquette",
1635
+ "field.label_fg_desc": "Couleur du texte de l'etiquette de saut"
1616
1636
  },
1617
1637
  "ja": {
1618
1638
  "cmd.edit_theme": "テーマを編集",
@@ -1935,7 +1955,11 @@
1935
1955
  "field.file_status_untracked_fg": "ファイル状態: 未追跡",
1936
1956
  "field.file_status_untracked_fg_desc": "ファイルエクスプローラーの未追跡ファイルの色",
1937
1957
  "field.file_status_conflicted_fg": "ファイル状態: 競合",
1938
- "field.file_status_conflicted_fg_desc": "ファイルエクスプローラーの競合ファイルの色"
1958
+ "field.file_status_conflicted_fg_desc": "ファイルエクスプローラーの競合ファイルの色",
1959
+ "field.label_bg": "ラベル背景",
1960
+ "field.label_bg_desc": "ジャンプラベルの背景色",
1961
+ "field.label_fg": "ラベル前景",
1962
+ "field.label_fg_desc": "ジャンプラベルのテキスト色"
1939
1963
  },
1940
1964
  "ko": {
1941
1965
  "cmd.edit_theme": "편집 Theme",
@@ -2258,7 +2282,11 @@
2258
2282
  "field.file_status_untracked_fg": "파일 상태: 추적되지 않음",
2259
2283
  "field.file_status_untracked_fg_desc": "파일 탐색기에서 추적되지 않은 파일 색상",
2260
2284
  "field.file_status_conflicted_fg": "파일 상태: 충돌",
2261
- "field.file_status_conflicted_fg_desc": "파일 탐색기에서 충돌 파일 색상"
2285
+ "field.file_status_conflicted_fg_desc": "파일 탐색기에서 충돌 파일 색상",
2286
+ "field.label_bg": "라벨 배경",
2287
+ "field.label_bg_desc": "점프 라벨 배경 색상",
2288
+ "field.label_fg": "라벨 전경",
2289
+ "field.label_fg_desc": "점프 라벨 텍스트 색상"
2262
2290
  },
2263
2291
  "pt-BR": {
2264
2292
  "cmd.edit_theme": "editar Theme",
@@ -2581,7 +2609,11 @@
2581
2609
  "field.file_status_untracked_fg": "Status do arquivo: Não rastreado",
2582
2610
  "field.file_status_untracked_fg_desc": "Cor dos arquivos não rastreados no explorador",
2583
2611
  "field.file_status_conflicted_fg": "Status do arquivo: Em conflito",
2584
- "field.file_status_conflicted_fg_desc": "Cor dos arquivos em conflito no explorador"
2612
+ "field.file_status_conflicted_fg_desc": "Cor dos arquivos em conflito no explorador",
2613
+ "field.label_bg": "rótulo fundo",
2614
+ "field.label_bg_desc": "salto rótulo fundo cor",
2615
+ "field.label_fg": "rótulo primeiro plano",
2616
+ "field.label_fg_desc": "salto rótulo texto cor"
2585
2617
  },
2586
2618
  "ru": {
2587
2619
  "cmd.edit_theme": "редактировать Theme",
@@ -2904,7 +2936,11 @@
2904
2936
  "field.file_status_untracked_fg": "Статус файла: Неотслеживаемый",
2905
2937
  "field.file_status_untracked_fg_desc": "Цвет неотслеживаемых файлов в проводнике",
2906
2938
  "field.file_status_conflicted_fg": "Статус файла: Конфликт",
2907
- "field.file_status_conflicted_fg_desc": "Цвет конфликтующих файлов в проводнике"
2939
+ "field.file_status_conflicted_fg_desc": "Цвет конфликтующих файлов в проводнике",
2940
+ "field.label_bg": "метка фон",
2941
+ "field.label_bg_desc": "переход метка фон цвет",
2942
+ "field.label_fg": "метка передний план",
2943
+ "field.label_fg_desc": "переход метка текст цвет"
2908
2944
  },
2909
2945
  "th": {
2910
2946
  "cmd.edit_theme": "แก้ไข Theme",
@@ -3227,7 +3263,11 @@
3227
3263
  "field.file_status_untracked_fg": "สถานะไฟล์: ไม่ได้ติดตาม",
3228
3264
  "field.file_status_untracked_fg_desc": "สีไฟล์ที่ไม่ได้ติดตามในตัวสำรวจไฟล์",
3229
3265
  "field.file_status_conflicted_fg": "สถานะไฟล์: ขัดแย้ง",
3230
- "field.file_status_conflicted_fg_desc": "สีไฟล์ที่ขัดแย้งในตัวสำรวจไฟล์"
3266
+ "field.file_status_conflicted_fg_desc": "สีไฟล์ที่ขัดแย้งในตัวสำรวจไฟล์",
3267
+ "field.label_bg": "ป้าย พื้นหลัง",
3268
+ "field.label_bg_desc": "กระโดด ป้าย พื้นหลัง สี",
3269
+ "field.label_fg": "ป้าย พื้นหน้า",
3270
+ "field.label_fg_desc": "กระโดด ป้าย ข้อความ สี"
3231
3271
  },
3232
3272
  "uk": {
3233
3273
  "cmd.edit_theme": "редагувати Theme",
@@ -3550,7 +3590,11 @@
3550
3590
  "field.file_status_untracked_fg": "Статус файлу: Не відстежується",
3551
3591
  "field.file_status_untracked_fg_desc": "Колір невідстежуваних файлів у провіднику",
3552
3592
  "field.file_status_conflicted_fg": "Статус файлу: Конфлікт",
3553
- "field.file_status_conflicted_fg_desc": "Колір конфліктних файлів у провіднику"
3593
+ "field.file_status_conflicted_fg_desc": "Колір конфліктних файлів у провіднику",
3594
+ "field.label_bg": "мітка фон",
3595
+ "field.label_bg_desc": "стрибок мітка фон колір",
3596
+ "field.label_fg": "мітка передній план",
3597
+ "field.label_fg_desc": "стрибок мітка текст колір"
3554
3598
  },
3555
3599
  "vi": {
3556
3600
  "cmd.edit_theme": "Chỉnh sửa giao diện",
@@ -3873,7 +3917,11 @@
3873
3917
  "field.file_status_untracked_fg": "Trạng thái tệp: Chưa theo dõi",
3874
3918
  "field.file_status_untracked_fg_desc": "Màu tệp chưa theo dõi trong trình duyệt tệp",
3875
3919
  "field.file_status_conflicted_fg": "Trạng thái tệp: Xung đột",
3876
- "field.file_status_conflicted_fg_desc": "Màu tệp xung đột trong trình duyệt tệp"
3920
+ "field.file_status_conflicted_fg_desc": "Màu tệp xung đột trong trình duyệt tệp",
3921
+ "field.label_bg": "Nền nhãn",
3922
+ "field.label_bg_desc": "Màu nền nhãn nhảy",
3923
+ "field.label_fg": "Tiền cảnh nhãn",
3924
+ "field.label_fg_desc": "Màu văn bản nhãn nhảy"
3877
3925
  },
3878
3926
  "zh-CN": {
3879
3927
  "cmd.edit_theme": "编辑主题",
@@ -4196,7 +4244,11 @@
4196
4244
  "field.file_status_untracked_fg": "文件状态: 未跟踪",
4197
4245
  "field.file_status_untracked_fg_desc": "文件浏览器中未跟踪文件的颜色",
4198
4246
  "field.file_status_conflicted_fg": "文件状态: 冲突",
4199
- "field.file_status_conflicted_fg_desc": "文件浏览器中冲突文件的颜色"
4247
+ "field.file_status_conflicted_fg_desc": "文件浏览器中冲突文件的颜色",
4248
+ "field.label_bg": "标签背景",
4249
+ "field.label_bg_desc": "跳转标签背景颜色",
4250
+ "field.label_fg": "标签前景",
4251
+ "field.label_fg_desc": "跳转标签文本颜色"
4200
4252
  },
4201
4253
  "it": {
4202
4254
  "cmd.edit_theme": "Modifica tema",
@@ -4519,6 +4571,10 @@
4519
4571
  "field.file_status_untracked_fg": "Stato file: Non tracciato",
4520
4572
  "field.file_status_untracked_fg_desc": "Colore dei file non tracciati nell'esplora file",
4521
4573
  "field.file_status_conflicted_fg": "Stato file: In conflitto",
4522
- "field.file_status_conflicted_fg_desc": "Colore dei file in conflitto nell'esplora file"
4574
+ "field.file_status_conflicted_fg_desc": "Colore dei file in conflitto nell'esplora file",
4575
+ "field.label_bg": "Sfondo etichetta",
4576
+ "field.label_bg_desc": "Colore di sfondo dell'etichetta di salto",
4577
+ "field.label_fg": "Primo piano etichetta",
4578
+ "field.label_fg_desc": "Colore del testo dell'etichetta di salto"
4523
4579
  }
4524
4580
  }