@fresh-editor/fresh-editor 0.3.0 → 0.3.2
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 +120 -2
- package/package.json +1 -1
- package/plugins/astro-lsp.ts +6 -12
- package/plugins/audit_mode.ts +106 -113
- package/plugins/bash-lsp.ts +15 -22
- package/plugins/clangd-lsp.ts +15 -24
- package/plugins/clojure-lsp.ts +9 -12
- package/plugins/cmake-lsp.ts +9 -12
- package/plugins/code-tour.ts +15 -16
- package/plugins/config-schema.json +49 -5
- package/plugins/csharp_support.ts +25 -30
- package/plugins/css-lsp.ts +15 -22
- package/plugins/dart-lsp.ts +9 -12
- package/plugins/dashboard.ts +118 -0
- package/plugins/devcontainer.i18n.json +84 -28
- package/plugins/devcontainer.ts +897 -170
- package/plugins/diagnostics_panel.ts +10 -17
- package/plugins/diff_nav.ts +20 -1
- package/plugins/elixir-lsp.ts +9 -12
- package/plugins/erlang-lsp.ts +9 -12
- package/plugins/examples/bookmarks.ts +10 -16
- package/plugins/find_references.ts +5 -9
- package/plugins/flash.ts +585 -0
- package/plugins/fsharp-lsp.ts +9 -12
- package/plugins/git_explorer.ts +16 -20
- package/plugins/git_gutter.ts +65 -79
- package/plugins/git_log.ts +8 -8
- package/plugins/gleam-lsp.ts +9 -12
- package/plugins/go-lsp.ts +15 -22
- package/plugins/graphql-lsp.ts +9 -12
- package/plugins/haskell-lsp.ts +9 -12
- package/plugins/html-lsp.ts +15 -24
- package/plugins/java-lsp.ts +9 -12
- package/plugins/json-lsp.ts +15 -24
- package/plugins/julia-lsp.ts +9 -12
- package/plugins/kotlin-lsp.ts +15 -22
- package/plugins/latex-lsp.ts +9 -12
- package/plugins/lib/fresh.d.ts +378 -0
- package/plugins/live_diff.i18n.json +450 -0
- package/plugins/live_diff.ts +946 -0
- package/plugins/lua-lsp.ts +15 -22
- package/plugins/markdown_compose.ts +78 -122
- package/plugins/markdown_source.ts +8 -10
- package/plugins/marksman-lsp.ts +9 -12
- package/plugins/merge_conflict.ts +15 -17
- package/plugins/nim-lsp.ts +9 -12
- package/plugins/nix-lsp.ts +9 -12
- package/plugins/nushell-lsp.ts +9 -12
- package/plugins/ocaml-lsp.ts +9 -12
- package/plugins/odin-lsp.ts +15 -22
- package/plugins/path_complete.ts +5 -6
- package/plugins/perl-lsp.ts +9 -12
- package/plugins/php-lsp.ts +15 -22
- package/plugins/pkg.ts +10 -21
- package/plugins/protobuf-lsp.ts +9 -12
- package/plugins/python-lsp.ts +15 -24
- package/plugins/r-lsp.ts +9 -12
- package/plugins/ruby-lsp.ts +15 -22
- package/plugins/rust-lsp.ts +18 -28
- package/plugins/scala-lsp.ts +9 -12
- package/plugins/schemas/theme.schema.json +66 -0
- package/plugins/search_replace.ts +10 -13
- package/plugins/solidity-lsp.ts +9 -12
- package/plugins/sql-lsp.ts +9 -12
- package/plugins/svelte-lsp.ts +9 -12
- package/plugins/swift-lsp.ts +9 -12
- package/plugins/tailwindcss-lsp.ts +9 -12
- package/plugins/templ-lsp.ts +9 -12
- package/plugins/terraform-lsp.ts +9 -12
- package/plugins/theme_editor.i18n.json +182 -14
- package/plugins/theme_editor.ts +152 -208
- package/plugins/toml-lsp.ts +15 -22
- package/plugins/tsconfig.json +101 -0
- package/plugins/typescript-lsp.ts +15 -24
- package/plugins/typst-lsp.ts +15 -22
- package/plugins/vi_mode.ts +77 -290
- package/plugins/vue-lsp.ts +9 -12
- package/plugins/yaml-lsp.ts +15 -22
- package/plugins/zig-lsp.ts +9 -12
- package/themes/dark.json +2 -0
- package/themes/dracula.json +2 -0
- package/themes/high-contrast.json +2 -0
- package/themes/light.json +2 -0
- package/themes/nord.json +2 -0
- package/themes/nostalgia.json +2 -0
- package/themes/solarized-dark.json +2 -0
|
@@ -179,6 +179,14 @@
|
|
|
179
179
|
"field.status_bar_fg_desc": "Status bar text barva",
|
|
180
180
|
"field.status_bar_bg": "Status Bar pozadí",
|
|
181
181
|
"field.status_bar_bg_desc": "Status bar pozadí barva",
|
|
182
|
+
"field.status_palette_fg": "Status Bar nápověda palety popředí",
|
|
183
|
+
"field.status_palette_fg_desc": "Popředí pro nápovědu Ctrl+P palety ve status baru",
|
|
184
|
+
"field.status_palette_bg": "Status Bar nápověda palety pozadí",
|
|
185
|
+
"field.status_palette_bg_desc": "Pozadí pro nápovědu Ctrl+P palety ve status baru",
|
|
186
|
+
"field.status_lsp_on_fg": "Status Bar LSP zapnuto popředí",
|
|
187
|
+
"field.status_lsp_on_fg_desc": "Popředí indikátoru LSP, když server běží",
|
|
188
|
+
"field.status_lsp_on_bg": "Status Bar LSP zapnuto pozadí",
|
|
189
|
+
"field.status_lsp_on_bg_desc": "Pozadí indikátoru LSP, když server běží",
|
|
182
190
|
"field.prompt_fg": "Prompt popředí",
|
|
183
191
|
"field.prompt_fg_desc": "Command prompt text barva",
|
|
184
192
|
"field.prompt_bg": "Prompt pozadí",
|
|
@@ -320,7 +328,11 @@
|
|
|
320
328
|
"field.file_status_untracked_fg": "Stav souboru: Nesledováno",
|
|
321
329
|
"field.file_status_untracked_fg_desc": "Barva nesledovaných souborů v průzkumníku",
|
|
322
330
|
"field.file_status_conflicted_fg": "Stav souboru: Konflikt",
|
|
323
|
-
"field.file_status_conflicted_fg_desc": "Barva konfliktních souborů v průzkumníku"
|
|
331
|
+
"field.file_status_conflicted_fg_desc": "Barva konfliktních souborů v průzkumníku",
|
|
332
|
+
"field.label_bg": "štítek pozadí",
|
|
333
|
+
"field.label_bg_desc": "skok štítek pozadí barva",
|
|
334
|
+
"field.label_fg": "štítek popředí",
|
|
335
|
+
"field.label_fg_desc": "skok štítek text barva"
|
|
324
336
|
},
|
|
325
337
|
"de": {
|
|
326
338
|
"cmd.edit_theme": "Theme bearbeiten",
|
|
@@ -472,6 +484,14 @@
|
|
|
472
484
|
"field.status_bar_fg_desc": "Textfarbe der Statusleiste",
|
|
473
485
|
"field.status_bar_bg": "Statusleiste Hintergrund",
|
|
474
486
|
"field.status_bar_bg_desc": "Hintergrundfarbe der Statusleiste",
|
|
487
|
+
"field.status_palette_fg": "Statusleiste Palette-Hinweis Vordergrund",
|
|
488
|
+
"field.status_palette_fg_desc": "Vordergrund des Ctrl+P-Palettenhinweises in der Statusleiste",
|
|
489
|
+
"field.status_palette_bg": "Statusleiste Palette-Hinweis Hintergrund",
|
|
490
|
+
"field.status_palette_bg_desc": "Hintergrund des Ctrl+P-Palettenhinweises in der Statusleiste",
|
|
491
|
+
"field.status_lsp_on_fg": "Statusleiste LSP-An Vordergrund",
|
|
492
|
+
"field.status_lsp_on_fg_desc": "Vordergrund der LSP-Anzeige, wenn ein Server läuft",
|
|
493
|
+
"field.status_lsp_on_bg": "Statusleiste LSP-An Hintergrund",
|
|
494
|
+
"field.status_lsp_on_bg_desc": "Hintergrund der LSP-Anzeige, wenn ein Server läuft",
|
|
475
495
|
"field.prompt_fg": "Eingabezeile Vordergrund",
|
|
476
496
|
"field.prompt_fg_desc": "Textfarbe der Befehlseingabe",
|
|
477
497
|
"field.prompt_bg": "Eingabezeile Hintergrund",
|
|
@@ -643,7 +663,11 @@
|
|
|
643
663
|
"field.file_status_untracked_fg": "Dateistatus: Nicht verfolgt",
|
|
644
664
|
"field.file_status_untracked_fg_desc": "Farbe für nicht verfolgte Dateien im Datei-Explorer",
|
|
645
665
|
"field.file_status_conflicted_fg": "Dateistatus: Konflikt",
|
|
646
|
-
"field.file_status_conflicted_fg_desc": "Farbe für Dateien mit Konflikten im Datei-Explorer"
|
|
666
|
+
"field.file_status_conflicted_fg_desc": "Farbe für Dateien mit Konflikten im Datei-Explorer",
|
|
667
|
+
"field.label_bg": "Sprungmarke Hintergrund",
|
|
668
|
+
"field.label_bg_desc": "Hintergrundfarbe der Sprungmarke",
|
|
669
|
+
"field.label_fg": "Sprungmarke Vordergrund",
|
|
670
|
+
"field.label_fg_desc": "Textfarbe der Sprungmarke"
|
|
647
671
|
},
|
|
648
672
|
"en": {
|
|
649
673
|
"cmd.edit_theme": "Edit Theme",
|
|
@@ -829,6 +853,14 @@
|
|
|
829
853
|
"field.status_bar_fg_desc": "Status bar text color",
|
|
830
854
|
"field.status_bar_bg": "Status Bar Background",
|
|
831
855
|
"field.status_bar_bg_desc": "Status bar background color",
|
|
856
|
+
"field.status_palette_fg": "Status Bar Palette Hint Foreground",
|
|
857
|
+
"field.status_palette_fg_desc": "Foreground for the Ctrl+P palette hint in the status bar",
|
|
858
|
+
"field.status_palette_bg": "Status Bar Palette Hint Background",
|
|
859
|
+
"field.status_palette_bg_desc": "Background for the Ctrl+P palette hint in the status bar",
|
|
860
|
+
"field.status_lsp_on_fg": "Status Bar LSP-On Foreground",
|
|
861
|
+
"field.status_lsp_on_fg_desc": "Foreground for the LSP indicator when a server is running",
|
|
862
|
+
"field.status_lsp_on_bg": "Status Bar LSP-On Background",
|
|
863
|
+
"field.status_lsp_on_bg_desc": "Background for the LSP indicator when a server is running",
|
|
832
864
|
"field.prompt_fg": "Prompt Foreground",
|
|
833
865
|
"field.prompt_fg_desc": "Command prompt text color",
|
|
834
866
|
"field.prompt_bg": "Prompt Background",
|
|
@@ -966,7 +998,11 @@
|
|
|
966
998
|
"field.file_status_untracked_fg": "File Status: Untracked",
|
|
967
999
|
"field.file_status_untracked_fg_desc": "Color for untracked files in file explorer",
|
|
968
1000
|
"field.file_status_conflicted_fg": "File Status: Conflicted",
|
|
969
|
-
"field.file_status_conflicted_fg_desc": "Color for conflicted files in file explorer"
|
|
1001
|
+
"field.file_status_conflicted_fg_desc": "Color for conflicted files in file explorer",
|
|
1002
|
+
"field.label_bg": "Label Background",
|
|
1003
|
+
"field.label_bg_desc": "Jump label background color",
|
|
1004
|
+
"field.label_fg": "Label Foreground",
|
|
1005
|
+
"field.label_fg_desc": "Jump label text color"
|
|
970
1006
|
},
|
|
971
1007
|
"es": {
|
|
972
1008
|
"cmd.edit_theme": "Editar tema",
|
|
@@ -1118,6 +1154,14 @@
|
|
|
1118
1154
|
"field.status_bar_fg_desc": "Color de texto de la barra de estado",
|
|
1119
1155
|
"field.status_bar_bg": "Fondo de barra de estado",
|
|
1120
1156
|
"field.status_bar_bg_desc": "Color de fondo de la barra de estado",
|
|
1157
|
+
"field.status_palette_fg": "Primer plano de pista de paleta de barra de estado",
|
|
1158
|
+
"field.status_palette_fg_desc": "Color del texto del recordatorio Ctrl+P en la barra de estado",
|
|
1159
|
+
"field.status_palette_bg": "Fondo de pista de paleta de barra de estado",
|
|
1160
|
+
"field.status_palette_bg_desc": "Color de fondo del recordatorio Ctrl+P en la barra de estado",
|
|
1161
|
+
"field.status_lsp_on_fg": "Primer plano de LSP activo en barra de estado",
|
|
1162
|
+
"field.status_lsp_on_fg_desc": "Color del indicador LSP cuando hay un servidor en ejecución",
|
|
1163
|
+
"field.status_lsp_on_bg": "Fondo de LSP activo en barra de estado",
|
|
1164
|
+
"field.status_lsp_on_bg_desc": "Color de fondo del indicador LSP cuando hay un servidor en ejecución",
|
|
1121
1165
|
"field.prompt_fg": "Primer plano de prompt",
|
|
1122
1166
|
"field.prompt_fg_desc": "Color de texto del prompt de comandos",
|
|
1123
1167
|
"field.prompt_bg": "Fondo de prompt",
|
|
@@ -1289,7 +1333,11 @@
|
|
|
1289
1333
|
"field.file_status_untracked_fg": "Estado del archivo: Sin seguimiento",
|
|
1290
1334
|
"field.file_status_untracked_fg_desc": "Color de archivos sin seguimiento en el explorador",
|
|
1291
1335
|
"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"
|
|
1336
|
+
"field.file_status_conflicted_fg_desc": "Color de archivos en conflicto en el explorador",
|
|
1337
|
+
"field.label_bg": "Fondo de etiqueta",
|
|
1338
|
+
"field.label_bg_desc": "Color de fondo de etiqueta de salto",
|
|
1339
|
+
"field.label_fg": "Primer plano de etiqueta",
|
|
1340
|
+
"field.label_fg_desc": "Color de texto de etiqueta de salto"
|
|
1293
1341
|
},
|
|
1294
1342
|
"fr": {
|
|
1295
1343
|
"cmd.edit_theme": "Modifier le theme",
|
|
@@ -1441,6 +1489,14 @@
|
|
|
1441
1489
|
"field.status_bar_fg_desc": "Couleur du texte de la barre d'etat",
|
|
1442
1490
|
"field.status_bar_bg": "Arriere-plan barre d'etat",
|
|
1443
1491
|
"field.status_bar_bg_desc": "Couleur d'arriere-plan de la barre d'etat",
|
|
1492
|
+
"field.status_palette_fg": "Premier plan indice palette barre d'etat",
|
|
1493
|
+
"field.status_palette_fg_desc": "Couleur du texte du raccourci Ctrl+P dans la barre d'etat",
|
|
1494
|
+
"field.status_palette_bg": "Arriere-plan indice palette barre d'etat",
|
|
1495
|
+
"field.status_palette_bg_desc": "Couleur de fond du raccourci Ctrl+P dans la barre d'etat",
|
|
1496
|
+
"field.status_lsp_on_fg": "Premier plan LSP actif barre d'etat",
|
|
1497
|
+
"field.status_lsp_on_fg_desc": "Couleur de l'indicateur LSP quand un serveur fonctionne",
|
|
1498
|
+
"field.status_lsp_on_bg": "Arriere-plan LSP actif barre d'etat",
|
|
1499
|
+
"field.status_lsp_on_bg_desc": "Couleur de fond de l'indicateur LSP quand un serveur fonctionne",
|
|
1444
1500
|
"field.prompt_fg": "Premier plan invite",
|
|
1445
1501
|
"field.prompt_fg_desc": "Couleur du texte de l'invite de commande",
|
|
1446
1502
|
"field.prompt_bg": "Arriere-plan invite",
|
|
@@ -1612,7 +1668,11 @@
|
|
|
1612
1668
|
"field.file_status_untracked_fg": "Statut du fichier : Non suivi",
|
|
1613
1669
|
"field.file_status_untracked_fg_desc": "Couleur des fichiers non suivis dans l'explorateur",
|
|
1614
1670
|
"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"
|
|
1671
|
+
"field.file_status_conflicted_fg_desc": "Couleur des fichiers en conflit dans l'explorateur",
|
|
1672
|
+
"field.label_bg": "Arriere-plan etiquette",
|
|
1673
|
+
"field.label_bg_desc": "Couleur d'arriere-plan de l'etiquette de saut",
|
|
1674
|
+
"field.label_fg": "Premier plan etiquette",
|
|
1675
|
+
"field.label_fg_desc": "Couleur du texte de l'etiquette de saut"
|
|
1616
1676
|
},
|
|
1617
1677
|
"ja": {
|
|
1618
1678
|
"cmd.edit_theme": "テーマを編集",
|
|
@@ -1764,6 +1824,14 @@
|
|
|
1764
1824
|
"field.status_bar_fg_desc": "ステータスバーのテキスト色",
|
|
1765
1825
|
"field.status_bar_bg": "ステータスバー背景",
|
|
1766
1826
|
"field.status_bar_bg_desc": "ステータスバーの背景色",
|
|
1827
|
+
"field.status_palette_fg": "ステータスバー パレットヒント前景",
|
|
1828
|
+
"field.status_palette_fg_desc": "ステータスバーの Ctrl+P パレットヒントのテキスト色",
|
|
1829
|
+
"field.status_palette_bg": "ステータスバー パレットヒント背景",
|
|
1830
|
+
"field.status_palette_bg_desc": "ステータスバーの Ctrl+P パレットヒントの背景色",
|
|
1831
|
+
"field.status_lsp_on_fg": "ステータスバー LSP オン前景",
|
|
1832
|
+
"field.status_lsp_on_fg_desc": "サーバー実行中の LSP インジケーターのテキスト色",
|
|
1833
|
+
"field.status_lsp_on_bg": "ステータスバー LSP オン背景",
|
|
1834
|
+
"field.status_lsp_on_bg_desc": "サーバー実行中の LSP インジケーターの背景色",
|
|
1767
1835
|
"field.prompt_fg": "プロンプト前景",
|
|
1768
1836
|
"field.prompt_fg_desc": "コマンドプロンプトのテキスト色",
|
|
1769
1837
|
"field.prompt_bg": "プロンプト背景",
|
|
@@ -1935,7 +2003,11 @@
|
|
|
1935
2003
|
"field.file_status_untracked_fg": "ファイル状態: 未追跡",
|
|
1936
2004
|
"field.file_status_untracked_fg_desc": "ファイルエクスプローラーの未追跡ファイルの色",
|
|
1937
2005
|
"field.file_status_conflicted_fg": "ファイル状態: 競合",
|
|
1938
|
-
"field.file_status_conflicted_fg_desc": "ファイルエクスプローラーの競合ファイルの色"
|
|
2006
|
+
"field.file_status_conflicted_fg_desc": "ファイルエクスプローラーの競合ファイルの色",
|
|
2007
|
+
"field.label_bg": "ラベル背景",
|
|
2008
|
+
"field.label_bg_desc": "ジャンプラベルの背景色",
|
|
2009
|
+
"field.label_fg": "ラベル前景",
|
|
2010
|
+
"field.label_fg_desc": "ジャンプラベルのテキスト色"
|
|
1939
2011
|
},
|
|
1940
2012
|
"ko": {
|
|
1941
2013
|
"cmd.edit_theme": "편집 Theme",
|
|
@@ -2117,6 +2189,14 @@
|
|
|
2117
2189
|
"field.status_bar_fg_desc": "Status bar 텍스트 색상",
|
|
2118
2190
|
"field.status_bar_bg": "Status Bar 배경",
|
|
2119
2191
|
"field.status_bar_bg_desc": "Status bar 배경 색상",
|
|
2192
|
+
"field.status_palette_fg": "Status Bar 팔레트 힌트 전경",
|
|
2193
|
+
"field.status_palette_fg_desc": "상태 표시줄의 Ctrl+P 팔레트 힌트 텍스트 색상",
|
|
2194
|
+
"field.status_palette_bg": "Status Bar 팔레트 힌트 배경",
|
|
2195
|
+
"field.status_palette_bg_desc": "상태 표시줄의 Ctrl+P 팔레트 힌트 배경 색상",
|
|
2196
|
+
"field.status_lsp_on_fg": "Status Bar LSP 켜짐 전경",
|
|
2197
|
+
"field.status_lsp_on_fg_desc": "서버 실행 중인 LSP 표시기의 텍스트 색상",
|
|
2198
|
+
"field.status_lsp_on_bg": "Status Bar LSP 켜짐 배경",
|
|
2199
|
+
"field.status_lsp_on_bg_desc": "서버 실행 중인 LSP 표시기의 배경 색상",
|
|
2120
2200
|
"field.prompt_fg": "Prompt 전경",
|
|
2121
2201
|
"field.prompt_fg_desc": "Command prompt 텍스트 색상",
|
|
2122
2202
|
"field.prompt_bg": "Prompt 배경",
|
|
@@ -2258,7 +2338,11 @@
|
|
|
2258
2338
|
"field.file_status_untracked_fg": "파일 상태: 추적되지 않음",
|
|
2259
2339
|
"field.file_status_untracked_fg_desc": "파일 탐색기에서 추적되지 않은 파일 색상",
|
|
2260
2340
|
"field.file_status_conflicted_fg": "파일 상태: 충돌",
|
|
2261
|
-
"field.file_status_conflicted_fg_desc": "파일 탐색기에서 충돌 파일 색상"
|
|
2341
|
+
"field.file_status_conflicted_fg_desc": "파일 탐색기에서 충돌 파일 색상",
|
|
2342
|
+
"field.label_bg": "라벨 배경",
|
|
2343
|
+
"field.label_bg_desc": "점프 라벨 배경 색상",
|
|
2344
|
+
"field.label_fg": "라벨 전경",
|
|
2345
|
+
"field.label_fg_desc": "점프 라벨 텍스트 색상"
|
|
2262
2346
|
},
|
|
2263
2347
|
"pt-BR": {
|
|
2264
2348
|
"cmd.edit_theme": "editar Theme",
|
|
@@ -2440,6 +2524,14 @@
|
|
|
2440
2524
|
"field.status_bar_fg_desc": "Status bar texto cor",
|
|
2441
2525
|
"field.status_bar_bg": "Status Bar fundo",
|
|
2442
2526
|
"field.status_bar_bg_desc": "Status bar fundo cor",
|
|
2527
|
+
"field.status_palette_fg": "Status Bar dica de paleta primeiro plano",
|
|
2528
|
+
"field.status_palette_fg_desc": "Cor do texto da dica Ctrl+P na barra de status",
|
|
2529
|
+
"field.status_palette_bg": "Status Bar dica de paleta fundo",
|
|
2530
|
+
"field.status_palette_bg_desc": "Cor de fundo da dica Ctrl+P na barra de status",
|
|
2531
|
+
"field.status_lsp_on_fg": "Status Bar LSP ligado primeiro plano",
|
|
2532
|
+
"field.status_lsp_on_fg_desc": "Cor do indicador LSP quando um servidor esta em execucao",
|
|
2533
|
+
"field.status_lsp_on_bg": "Status Bar LSP ligado fundo",
|
|
2534
|
+
"field.status_lsp_on_bg_desc": "Cor de fundo do indicador LSP quando um servidor esta em execucao",
|
|
2443
2535
|
"field.prompt_fg": "Prompt primeiro plano",
|
|
2444
2536
|
"field.prompt_fg_desc": "Command prompt texto cor",
|
|
2445
2537
|
"field.prompt_bg": "Prompt fundo",
|
|
@@ -2581,7 +2673,11 @@
|
|
|
2581
2673
|
"field.file_status_untracked_fg": "Status do arquivo: Não rastreado",
|
|
2582
2674
|
"field.file_status_untracked_fg_desc": "Cor dos arquivos não rastreados no explorador",
|
|
2583
2675
|
"field.file_status_conflicted_fg": "Status do arquivo: Em conflito",
|
|
2584
|
-
"field.file_status_conflicted_fg_desc": "Cor dos arquivos em conflito no explorador"
|
|
2676
|
+
"field.file_status_conflicted_fg_desc": "Cor dos arquivos em conflito no explorador",
|
|
2677
|
+
"field.label_bg": "rótulo fundo",
|
|
2678
|
+
"field.label_bg_desc": "salto rótulo fundo cor",
|
|
2679
|
+
"field.label_fg": "rótulo primeiro plano",
|
|
2680
|
+
"field.label_fg_desc": "salto rótulo texto cor"
|
|
2585
2681
|
},
|
|
2586
2682
|
"ru": {
|
|
2587
2683
|
"cmd.edit_theme": "редактировать Theme",
|
|
@@ -2763,6 +2859,14 @@
|
|
|
2763
2859
|
"field.status_bar_fg_desc": "Status bar текст цвет",
|
|
2764
2860
|
"field.status_bar_bg": "Status Bar фон",
|
|
2765
2861
|
"field.status_bar_bg_desc": "Status bar фон цвет",
|
|
2862
|
+
"field.status_palette_fg": "Status Bar подсказка палитры передний план",
|
|
2863
|
+
"field.status_palette_fg_desc": "Цвет текста подсказки Ctrl+P в строке состояния",
|
|
2864
|
+
"field.status_palette_bg": "Status Bar подсказка палитры фон",
|
|
2865
|
+
"field.status_palette_bg_desc": "Цвет фона подсказки Ctrl+P в строке состояния",
|
|
2866
|
+
"field.status_lsp_on_fg": "Status Bar LSP включен передний план",
|
|
2867
|
+
"field.status_lsp_on_fg_desc": "Цвет индикатора LSP, когда сервер запущен",
|
|
2868
|
+
"field.status_lsp_on_bg": "Status Bar LSP включен фон",
|
|
2869
|
+
"field.status_lsp_on_bg_desc": "Цвет фона индикатора LSP, когда сервер запущен",
|
|
2766
2870
|
"field.prompt_fg": "Prompt передний план",
|
|
2767
2871
|
"field.prompt_fg_desc": "Command prompt текст цвет",
|
|
2768
2872
|
"field.prompt_bg": "Prompt фон",
|
|
@@ -2904,7 +3008,11 @@
|
|
|
2904
3008
|
"field.file_status_untracked_fg": "Статус файла: Неотслеживаемый",
|
|
2905
3009
|
"field.file_status_untracked_fg_desc": "Цвет неотслеживаемых файлов в проводнике",
|
|
2906
3010
|
"field.file_status_conflicted_fg": "Статус файла: Конфликт",
|
|
2907
|
-
"field.file_status_conflicted_fg_desc": "Цвет конфликтующих файлов в проводнике"
|
|
3011
|
+
"field.file_status_conflicted_fg_desc": "Цвет конфликтующих файлов в проводнике",
|
|
3012
|
+
"field.label_bg": "метка фон",
|
|
3013
|
+
"field.label_bg_desc": "переход метка фон цвет",
|
|
3014
|
+
"field.label_fg": "метка передний план",
|
|
3015
|
+
"field.label_fg_desc": "переход метка текст цвет"
|
|
2908
3016
|
},
|
|
2909
3017
|
"th": {
|
|
2910
3018
|
"cmd.edit_theme": "แก้ไข Theme",
|
|
@@ -3086,6 +3194,14 @@
|
|
|
3086
3194
|
"field.status_bar_fg_desc": "Status bar ข้อความ สี",
|
|
3087
3195
|
"field.status_bar_bg": "Status Bar พื้นหลัง",
|
|
3088
3196
|
"field.status_bar_bg_desc": "Status bar พื้นหลัง สี",
|
|
3197
|
+
"field.status_palette_fg": "Status Bar คำใบ้พาเลต พื้นหน้า",
|
|
3198
|
+
"field.status_palette_fg_desc": "สี ข้อความคำใบ้ Ctrl+P ในแถบสถานะ",
|
|
3199
|
+
"field.status_palette_bg": "Status Bar คำใบ้พาเลต พื้นหลัง",
|
|
3200
|
+
"field.status_palette_bg_desc": "สี พื้นหลังคำใบ้ Ctrl+P ในแถบสถานะ",
|
|
3201
|
+
"field.status_lsp_on_fg": "Status Bar LSP เปิด พื้นหน้า",
|
|
3202
|
+
"field.status_lsp_on_fg_desc": "สี ตัวบ่งชี้ LSP เมื่อเซิร์ฟเวอร์ทำงาน",
|
|
3203
|
+
"field.status_lsp_on_bg": "Status Bar LSP เปิด พื้นหลัง",
|
|
3204
|
+
"field.status_lsp_on_bg_desc": "สี พื้นหลังตัวบ่งชี้ LSP เมื่อเซิร์ฟเวอร์ทำงาน",
|
|
3089
3205
|
"field.prompt_fg": "Prompt พื้นหน้า",
|
|
3090
3206
|
"field.prompt_fg_desc": "Command prompt ข้อความ สี",
|
|
3091
3207
|
"field.prompt_bg": "Prompt พื้นหลัง",
|
|
@@ -3227,7 +3343,11 @@
|
|
|
3227
3343
|
"field.file_status_untracked_fg": "สถานะไฟล์: ไม่ได้ติดตาม",
|
|
3228
3344
|
"field.file_status_untracked_fg_desc": "สีไฟล์ที่ไม่ได้ติดตามในตัวสำรวจไฟล์",
|
|
3229
3345
|
"field.file_status_conflicted_fg": "สถานะไฟล์: ขัดแย้ง",
|
|
3230
|
-
"field.file_status_conflicted_fg_desc": "สีไฟล์ที่ขัดแย้งในตัวสำรวจไฟล์"
|
|
3346
|
+
"field.file_status_conflicted_fg_desc": "สีไฟล์ที่ขัดแย้งในตัวสำรวจไฟล์",
|
|
3347
|
+
"field.label_bg": "ป้าย พื้นหลัง",
|
|
3348
|
+
"field.label_bg_desc": "กระโดด ป้าย พื้นหลัง สี",
|
|
3349
|
+
"field.label_fg": "ป้าย พื้นหน้า",
|
|
3350
|
+
"field.label_fg_desc": "กระโดด ป้าย ข้อความ สี"
|
|
3231
3351
|
},
|
|
3232
3352
|
"uk": {
|
|
3233
3353
|
"cmd.edit_theme": "редагувати Theme",
|
|
@@ -3409,6 +3529,14 @@
|
|
|
3409
3529
|
"field.status_bar_fg_desc": "Status bar текст колір",
|
|
3410
3530
|
"field.status_bar_bg": "Status Bar фон",
|
|
3411
3531
|
"field.status_bar_bg_desc": "Status bar фон колір",
|
|
3532
|
+
"field.status_palette_fg": "Status Bar підказка палітри передній план",
|
|
3533
|
+
"field.status_palette_fg_desc": "Колір тексту підказки Ctrl+P у рядку стану",
|
|
3534
|
+
"field.status_palette_bg": "Status Bar підказка палітри фон",
|
|
3535
|
+
"field.status_palette_bg_desc": "Колір фону підказки Ctrl+P у рядку стану",
|
|
3536
|
+
"field.status_lsp_on_fg": "Status Bar LSP увімкнено передній план",
|
|
3537
|
+
"field.status_lsp_on_fg_desc": "Колір індикатора LSP, коли сервер запущено",
|
|
3538
|
+
"field.status_lsp_on_bg": "Status Bar LSP увімкнено фон",
|
|
3539
|
+
"field.status_lsp_on_bg_desc": "Колір фону індикатора LSP, коли сервер запущено",
|
|
3412
3540
|
"field.prompt_fg": "Prompt передній план",
|
|
3413
3541
|
"field.prompt_fg_desc": "Command prompt текст колір",
|
|
3414
3542
|
"field.prompt_bg": "Prompt фон",
|
|
@@ -3550,7 +3678,11 @@
|
|
|
3550
3678
|
"field.file_status_untracked_fg": "Статус файлу: Не відстежується",
|
|
3551
3679
|
"field.file_status_untracked_fg_desc": "Колір невідстежуваних файлів у провіднику",
|
|
3552
3680
|
"field.file_status_conflicted_fg": "Статус файлу: Конфлікт",
|
|
3553
|
-
"field.file_status_conflicted_fg_desc": "Колір конфліктних файлів у провіднику"
|
|
3681
|
+
"field.file_status_conflicted_fg_desc": "Колір конфліктних файлів у провіднику",
|
|
3682
|
+
"field.label_bg": "мітка фон",
|
|
3683
|
+
"field.label_bg_desc": "стрибок мітка фон колір",
|
|
3684
|
+
"field.label_fg": "мітка передній план",
|
|
3685
|
+
"field.label_fg_desc": "стрибок мітка текст колір"
|
|
3554
3686
|
},
|
|
3555
3687
|
"vi": {
|
|
3556
3688
|
"cmd.edit_theme": "Chỉnh sửa giao diện",
|
|
@@ -3732,6 +3864,14 @@
|
|
|
3732
3864
|
"field.status_bar_fg_desc": "Màu văn bản thanh trạng thái",
|
|
3733
3865
|
"field.status_bar_bg": "Nền thanh trạng thái",
|
|
3734
3866
|
"field.status_bar_bg_desc": "Màu nền thanh trạng thái",
|
|
3867
|
+
"field.status_palette_fg": "Tiền cảnh gợi ý bảng lệnh thanh trạng thái",
|
|
3868
|
+
"field.status_palette_fg_desc": "Màu chữ gợi ý Ctrl+P trên thanh trạng thái",
|
|
3869
|
+
"field.status_palette_bg": "Nền gợi ý bảng lệnh thanh trạng thái",
|
|
3870
|
+
"field.status_palette_bg_desc": "Màu nền gợi ý Ctrl+P trên thanh trạng thái",
|
|
3871
|
+
"field.status_lsp_on_fg": "Tiền cảnh LSP đang bật thanh trạng thái",
|
|
3872
|
+
"field.status_lsp_on_fg_desc": "Màu chỉ báo LSP khi máy chủ đang chạy",
|
|
3873
|
+
"field.status_lsp_on_bg": "Nền LSP đang bật thanh trạng thái",
|
|
3874
|
+
"field.status_lsp_on_bg_desc": "Màu nền chỉ báo LSP khi máy chủ đang chạy",
|
|
3735
3875
|
"field.prompt_fg": "Tiền cảnh dấu nhắc",
|
|
3736
3876
|
"field.prompt_fg_desc": "Màu văn bản dấu nhắc lệnh",
|
|
3737
3877
|
"field.prompt_bg": "Nền dấu nhắc",
|
|
@@ -3873,7 +4013,11 @@
|
|
|
3873
4013
|
"field.file_status_untracked_fg": "Trạng thái tệp: Chưa theo dõi",
|
|
3874
4014
|
"field.file_status_untracked_fg_desc": "Màu tệp chưa theo dõi trong trình duyệt tệp",
|
|
3875
4015
|
"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"
|
|
4016
|
+
"field.file_status_conflicted_fg_desc": "Màu tệp xung đột trong trình duyệt tệp",
|
|
4017
|
+
"field.label_bg": "Nền nhãn",
|
|
4018
|
+
"field.label_bg_desc": "Màu nền nhãn nhảy",
|
|
4019
|
+
"field.label_fg": "Tiền cảnh nhãn",
|
|
4020
|
+
"field.label_fg_desc": "Màu văn bản nhãn nhảy"
|
|
3877
4021
|
},
|
|
3878
4022
|
"zh-CN": {
|
|
3879
4023
|
"cmd.edit_theme": "编辑主题",
|
|
@@ -4025,6 +4169,14 @@
|
|
|
4025
4169
|
"field.status_bar_fg_desc": "状态栏文本颜色",
|
|
4026
4170
|
"field.status_bar_bg": "状态栏背景",
|
|
4027
4171
|
"field.status_bar_bg_desc": "状态栏背景颜色",
|
|
4172
|
+
"field.status_palette_fg": "状态栏命令面板提示前景",
|
|
4173
|
+
"field.status_palette_fg_desc": "状态栏中 Ctrl+P 命令面板提示的文本颜色",
|
|
4174
|
+
"field.status_palette_bg": "状态栏命令面板提示背景",
|
|
4175
|
+
"field.status_palette_bg_desc": "状态栏中 Ctrl+P 命令面板提示的背景颜色",
|
|
4176
|
+
"field.status_lsp_on_fg": "状态栏 LSP 已开启前景",
|
|
4177
|
+
"field.status_lsp_on_fg_desc": "服务器运行时 LSP 指示器的文本颜色",
|
|
4178
|
+
"field.status_lsp_on_bg": "状态栏 LSP 已开启背景",
|
|
4179
|
+
"field.status_lsp_on_bg_desc": "服务器运行时 LSP 指示器的背景颜色",
|
|
4028
4180
|
"field.prompt_fg": "提示符前景",
|
|
4029
4181
|
"field.prompt_fg_desc": "命令提示符文本颜色",
|
|
4030
4182
|
"field.prompt_bg": "提示符背景",
|
|
@@ -4196,7 +4348,11 @@
|
|
|
4196
4348
|
"field.file_status_untracked_fg": "文件状态: 未跟踪",
|
|
4197
4349
|
"field.file_status_untracked_fg_desc": "文件浏览器中未跟踪文件的颜色",
|
|
4198
4350
|
"field.file_status_conflicted_fg": "文件状态: 冲突",
|
|
4199
|
-
"field.file_status_conflicted_fg_desc": "文件浏览器中冲突文件的颜色"
|
|
4351
|
+
"field.file_status_conflicted_fg_desc": "文件浏览器中冲突文件的颜色",
|
|
4352
|
+
"field.label_bg": "标签背景",
|
|
4353
|
+
"field.label_bg_desc": "跳转标签背景颜色",
|
|
4354
|
+
"field.label_fg": "标签前景",
|
|
4355
|
+
"field.label_fg_desc": "跳转标签文本颜色"
|
|
4200
4356
|
},
|
|
4201
4357
|
"it": {
|
|
4202
4358
|
"cmd.edit_theme": "Modifica tema",
|
|
@@ -4354,6 +4510,14 @@
|
|
|
4354
4510
|
"field.status_bar_fg_desc": "Colore del testo della barra di stato",
|
|
4355
4511
|
"field.status_bar_bg": "Sfondo barra di stato",
|
|
4356
4512
|
"field.status_bar_bg_desc": "Colore di sfondo della barra di stato",
|
|
4513
|
+
"field.status_palette_fg": "Primo piano suggerimento palette barra di stato",
|
|
4514
|
+
"field.status_palette_fg_desc": "Colore del testo del suggerimento Ctrl+P nella barra di stato",
|
|
4515
|
+
"field.status_palette_bg": "Sfondo suggerimento palette barra di stato",
|
|
4516
|
+
"field.status_palette_bg_desc": "Colore di sfondo del suggerimento Ctrl+P nella barra di stato",
|
|
4517
|
+
"field.status_lsp_on_fg": "Primo piano LSP attivo barra di stato",
|
|
4518
|
+
"field.status_lsp_on_fg_desc": "Colore dell'indicatore LSP quando un server e in esecuzione",
|
|
4519
|
+
"field.status_lsp_on_bg": "Sfondo LSP attivo barra di stato",
|
|
4520
|
+
"field.status_lsp_on_bg_desc": "Colore di sfondo dell'indicatore LSP quando un server e in esecuzione",
|
|
4357
4521
|
"field.prompt_fg": "Primo piano prompt",
|
|
4358
4522
|
"field.prompt_fg_desc": "Colore del testo del prompt dei comandi",
|
|
4359
4523
|
"field.prompt_bg": "Sfondo prompt",
|
|
@@ -4519,6 +4683,10 @@
|
|
|
4519
4683
|
"field.file_status_untracked_fg": "Stato file: Non tracciato",
|
|
4520
4684
|
"field.file_status_untracked_fg_desc": "Colore dei file non tracciati nell'esplora file",
|
|
4521
4685
|
"field.file_status_conflicted_fg": "Stato file: In conflitto",
|
|
4522
|
-
"field.file_status_conflicted_fg_desc": "Colore dei file in conflitto nell'esplora file"
|
|
4686
|
+
"field.file_status_conflicted_fg_desc": "Colore dei file in conflitto nell'esplora file",
|
|
4687
|
+
"field.label_bg": "Sfondo etichetta",
|
|
4688
|
+
"field.label_bg_desc": "Colore di sfondo dell'etichetta di salto",
|
|
4689
|
+
"field.label_fg": "Primo piano etichetta",
|
|
4690
|
+
"field.label_fg_desc": "Colore del testo dell'etichetta di salto"
|
|
4523
4691
|
}
|
|
4524
4692
|
}
|